End User API [Deprecated]
Delete End User
End User API [Deprecated]
Delete End User
DELETE
/api/delete_end_user/
Explo-Authorization*
curl --request DELETE \
--url https://api.explo.co/api/delete_end_user/ \
--header 'Explo-Authorization: <explo-authorization>' \
--data '{
"provided_id": "<provided_id>",
"customer_id": 0
}'
The End User API is now deprecated and has been replaced by the Customer API.
Body
provided_idrequired
string
The ID of the end user you provided in creation
customer_idrequired
number
The ID of the end user group the end user belongs to
Response
success
number
Indicates whether the call was successful. 1 if successful, 0 if not.
curl --location --request DELETE 'https://api.explo.co/api/delete_end_user/' \
--header 'Content-Type: application/json' \
--header 'Explo-Authorization: Token <token>' \
--data-raw '{
"provided_id": "example_1"
"customer_id": 123
}'
{
"success": 1
}
curl --location --request DELETE 'https://api.explo.co/api/delete_end_user/' \
--header 'Content-Type: application/json' \
--header 'Explo-Authorization: Token <token>' \
--data-raw '{
"provided_id": "example_1"
"customer_id": 123
}'
{
"success": 1
}