cURL
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"
}Users
Delete User & Data
Delete a user and their data.
POST
/
user
/
delete
cURL
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
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 deleting a user and their data.
Your unique identifier for the user.
Example:
"abc123"
Response
Successful request.
Success message.
Example:
"Success"
Was this page helpful?
⌘I