Skip to main content
DELETE
/
settings
/
staff
Remove Staff Member
curl --request DELETE \
  --url https://api.callgency.com/settings/staff \
  --header 'Authorization: <api-key>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "staff_id": "<string>"
}
'
This endpoint allows you to remove a staff member from your company. This action cannot be undone.

Request Body

  • staff_id (string, required): ID of the staff member to remove

Example Request

curl --request DELETE \
  --url https://api.callgency.com/settings/staff \
  --header 'Authorization: <api-key>' \
  --header 'Content-Type: application/json' \
  --data '{
    "staff_id": "<string>"
  }'

Response

Returns a success message confirming the staff member has been removed from the company.

Authorizations

Authorization
string
header
required

Company API Key

Body

application/json

Staff ID to remove

staff_id
string
required

ID of the staff member to remove

Response

Staff member removed successfully