Skip to main content
Get Disposition
curl --request GET \
  --url https://api.agents.timepay.ai/api/v1/dispositions/{id} \
  --header 'Authorization: <authorization>'
{
  "success": true,
  "data": {
    "id": "NiciJNJoGytGUGiyhqgK",
    "name": "Pay in Coming Days/Weeks",
    "description": "Mark if customer says they will pay next day or after few days.",
    "priority": 0,
    "createdAt": "2025-02-06T09:02:03",
    "updatedAt": "2025-02-09T10:30:20"
  }
}

Overview

Retrieve detailed information about a specific disposition using its unique ID.

Headers

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

Path Parameters

id
string
required
The unique identifier of the disposition

Response

success
boolean
Indicates if the request was successful
data
object
Disposition object
{
  "success": true,
  "data": {
    "id": "NiciJNJoGytGUGiyhqgK",
    "name": "Pay in Coming Days/Weeks",
    "description": "Mark if customer says they will pay next day or after few days.",
    "priority": 0,
    "createdAt": "2025-02-06T09:02:03",
    "updatedAt": "2025-02-09T10:30:20"
  }
}

Error Codes

StatusDescription
401Unauthorized - Invalid or missing API key
403Forbidden - Missing required permissions
404Disposition with the specified ID was not found
500Internal server error