End User Group API [Deprecated]
Delete User Group
End User Group API [Deprecated]
Delete User Group
DELETE
/api/delete_user_group/
Explo-Authorization*
curl --request DELETE \
--url https://api.explo.co/api/delete_user_group/ \
--header 'Explo-Authorization: <explo-authorization>'
The End User Group API is now deprecated and has been replaced by the Customer
API. Each End User Group entity corresponds to a Customer entity, with its
user_group_id
corresponding to a Customer customer_id
.
This API method has been replaced by Delete Customer.
This endpoint deletes an existing user group.
Body
current_token
string
This is the current user group token you have for the user group you want to delete
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_user_group/' \
--header 'Content-Type: application/json' \
--header 'Explo-Authorization: Token <token>' \
--data-raw '{
"current_token": "aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa"
}'
{
"success": 1
}
curl --location --request DELETE 'https://api.explo.co/api/delete_user_group/' \
--header 'Content-Type: application/json' \
--header 'Explo-Authorization: Token <token>' \
--data-raw '{
"current_token": "aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa"
}'
{
"success": 1
}