Try asking a question about Knot to the AI assistant, or install the MCP server or Knot skill to build with AI right from your IDE.
curl --request POST \
--url https://development.knotapi.com/development/accounts/disconnect \
--header 'Authorization: Basic <encoded-value>' \
--header 'Content-Type: application/json' \
--data '
{
"external_user_id": "abc123",
"merchant_id": 12
}
'{
"message": "Success"
}Change a merchant account’s connection status to disconnected and subsequently fire the ACCOUNT_LOGIN_REQUIRED webhook.
curl --request POST \
--url https://development.knotapi.com/development/accounts/disconnect \
--header 'Authorization: Basic <encoded-value>' \
--header 'Content-Type: application/json' \
--data '
{
"external_user_id": "abc123",
"merchant_id": 12
}
'{
"message": "Success"
}This endpoint is used to manually disconnect a user’s merchant account for a user in the development environment for testing purposes. Calling this endpoint sets theDocumentation Index
Fetch the complete documentation index at: https://docs.knotapi.com/llms.txt
Use this file to discover all available pages before exploring further.
connection.status value of the user’s merchant account to disconnected, subsequently triggering the ACCOUNT_LOGIN_REQUIRED webhook event.Basic authentication header of the form Basic <encoded-value>, where <encoded-value> is the base64-encoded string username:password. Use your client_id as the username and your secret as the password value.
The input parameters required for changing a merchant account's connection status to disconnected in development.
Successful request.
Success message.
"Success"
Was this page helpful?
Suggestions