Skip to main content
POST
/
detected_accounts
/
identify
cURL
curl --request POST \
  --url https://development.knotapi.com/detected_accounts/identify \
  --header 'Authorization: Basic <encoded-value>' \
  --header 'Content-Type: application/json' \
  --data '{
  "external_user_id": "123abc",
  "name": [
    "Spotify",
    "Netflix",
    "Magisto"
  ]
}'
[
{
"name": "spotify",
"detected": true,
"detected_at": "2025-10-23T17:00:00Z"
},
{
"name": "Netflix",
"detected": true,
"detected_at": "2025-10-23T17:00:21Z"
},
{
"name": "Magisto",
"detected": false,
"detected_at": null
}
]
This endpoint is coming soon. Check in with the Knot team to see when you can get access.

Authorizations

Authorization
string
header
required

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 identifying a user's account at a merchant.

external_user_id
string
required

Your unique identifier for the user.

Example:

"123abc"

name
string[]
required

Array of merchant names for which you want to identify merchant accounts. Can be a single merchant name or multiple.

Example:
["Spotify", "Netflix", "Magisto"]

Response

Successful request.

name
string

The value provided in name in the request.

Example:

"spotify"

detected
boolean

Whether a merchant account was detected for the user.

Example:

true

detected_at
string<date-time> | null

ISO timestamp when the merchant account was detected on the Knot platform.

Example:

"2025-10-23T17:00:00Z"