cURL
curl --request POST \
--url https://development.knotapi.com/accounts/unlink \
--header 'Authorization: Basic <encoded-value>' \
--header 'Content-Type: application/json' \
--data '
{
"external_user_id": "abc123",
"merchant_id": 12
}
'{
"message": "Success"
}Merchant Accounts
Unlink Merchant Account
Unlink a merchant account from the Knot platform.
POST
/
accounts
/
unlink
cURL
curl --request POST \
--url https://development.knotapi.com/accounts/unlink \
--header 'Authorization: Basic <encoded-value>' \
--header 'Content-Type: application/json' \
--data '
{
"external_user_id": "abc123",
"merchant_id": 12
}
'{
"message": "Success"
}Documentation Index
Fetch the complete documentation index at: https://docs.knotapi.com/llms.txt
Use this file to discover all available pages before exploring further.
Authorizations
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.
Body
application/json
The input parameters required for unlinking a merchant account.
Response
Successful request.
Success message.
Example:
"Success"
Was this page helpful?
⌘I