cURL
curl --request POST \
--url https://development.knotapi.com/detect \
--header 'Authorization: Basic <encoded-value>' \
--header 'Content-Type: application/json' \
--data '
{
"external_user_id": "123abc",
"email": "jane@example.com",
"phone_number": "+14155551234"
}
'{
"message": "Success"
}Detected Accounts
Detect Accounts
Detect merchant accounts with a user’s email.
POST
/
detect
cURL
curl --request POST \
--url https://development.knotapi.com/detect \
--header 'Authorization: Basic <encoded-value>' \
--header 'Content-Type: application/json' \
--data '
{
"external_user_id": "123abc",
"email": "jane@example.com",
"phone_number": "+14155551234"
}
'{
"message": "Success"
}After calling this endpoint, listen for 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.
NEW_DETECTED_ACCOUNTS_AVAILABLE webhook event which will fire if any detected accounts are found. This may take up to 1 minute.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 detecting a user's merchant accounts.
Response
Successful request.
Success message.
Example:
"Success"
Was this page helpful?
⌘I