This method lets you delete an existing user from Albato.
Authorization: This method should be called with the partner's master account token.
Request: POST https://api.albato.com/wl/partner-name/delete-user
Request parameters:
id — An alphanumeric user ID that the partner passes when creating a new user
Response parameters:
success — Request success indicator. Available values: true or false
Request example via curl:
curl --header "Content-type: application/json" --header "Accept: application/json" --header "Authorization: Basic cEFJjGffUSkV6WFFyWUhBM1RzS2hRHg7iKgReghUiijBfrdTY6" --request POST --data '{"id":"test"}' "https://api.albato.com/wl/partner-name/delete-user"
Response example:
{
"success": true,
"data": []
}