POST
/
user
/
delete
curl --request POST \
  --url https://development.knotapi.com/user/delete \
  --header 'Authorization: Basic <encoded-value>' \
  --header 'Content-Type: application/json' \
  --data '{
  "external_user_id": "abc123"
}'
{
  "message": "Success"
}

Authorizations

Authorization
string
header
required

Basic authentication header of the form Basic <encoded-value>, where <encoded-value> is the base64-encoded string username:password.

Body

application/json
The input parameters required for deleting a user and their data.
external_user_id
string
required

Your unique internal user identifier.

Example:

"abc123"

Response

200
application/json
Successful request.
message
string

Success message.

Example:

"Success"