DELETE
/
client
/
admins
/
{admin_id}
curl --request DELETE \
  --url https://api.helpyousponsor.com/v1/client/admins/{admin_id} \
  --header 'Authorization: Bearer <token>'
{
  "message": "Successfully Deleted Admin"
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Path Parameters

admin_id
integer
required

The ID of the admin to be removed

Response

200
application/json
Admin successfully deleted
message
string
Example:

"Successfully Deleted Admin"