Skip to main content
Delete Disposition Group
curl --request DELETE \
  --url https://api.agents.timepay.ai/api/v1/dispositions/groups/{id} \
  --header 'Authorization: <authorization>'
{
  "success": true,
  "message": "Disposition group deleted successfully"
}

Overview

Permanently delete a disposition group from your organization.
Deleting a group does not delete the dispositions within it. The dispositions remain available and can be assigned to other groups.

Headers

Authorization
string
required
Bearer token for authentication (e.g., Bearer <your_token>).

Path Parameters

id
string
required
The unique identifier of the disposition group to delete

Response

success
boolean
Indicates if the request was successful
message
string
Response message
{
  "success": true,
  "message": "Disposition group deleted successfully"
}

Error Codes

StatusDescription
401Unauthorized - Invalid or missing API key
403Forbidden - Missing required permissions
404Disposition group not found
500Internal server error