Skip to main content
Get Call Details
curl --request GET \
  --url https://api.agents.timepay.ai/api/v1/communication/call/{call_id} \
  --header 'Authorization: <authorization>'
200 OK
{
  "success": true,
  "data": {
    "call_id": "call_a1b2c3d4e5",
    "name": "John Wick",
    "campaign_id": "camp_abc123",
    "campaign_name": "August EMI Reminder Campaign",
    "agent_id": "agent_abc123",
    "loan_id": "LOAN-2025-00123",
    "from": "+918001234567",
    "to": "9876543210",
    "direction": "outbound",
    "status": "Contacted",
    "disposition": "promise_to_pay",
    "disposition_id": "disp_001",
    "duration": 145,
    "start_time": "2025-08-15T10:30:00.000Z",
    "end_time": "2025-08-15T10:32:25.000Z",
    "recording_id": "97gfaf-51b4-87t6-aa33-31b12075e2f3",
    "transcript_id": "39de3ba4-51b4-47e4-aa33-31b12075e2f3",
    "summary": "Customer acknowledged the pending EMI of ₹12,500 due on August 15 and promised to deposit the amount by tomorrow.",
    "extracted_data": {
      "emi_amount": 12500,
      "emi_due_date": "2025-08-15",
      "promise_to_pay_date": "2025-08-16"
    }
  }
}

Headers

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

Path Parameters

call_id
string
required
The unique identifier of the call.

Response

success
boolean
Indicates whether the request was successful.
data
object
Call details object.
200 OK
{
  "success": true,
  "data": {
    "call_id": "call_a1b2c3d4e5",
    "name": "John Wick",
    "campaign_id": "camp_abc123",
    "campaign_name": "August EMI Reminder Campaign",
    "agent_id": "agent_abc123",
    "loan_id": "LOAN-2025-00123",
    "from": "+918001234567",
    "to": "9876543210",
    "direction": "outbound",
    "status": "Contacted",
    "disposition": "promise_to_pay",
    "disposition_id": "disp_001",
    "duration": 145,
    "start_time": "2025-08-15T10:30:00.000Z",
    "end_time": "2025-08-15T10:32:25.000Z",
    "recording_id": "97gfaf-51b4-87t6-aa33-31b12075e2f3",
    "transcript_id": "39de3ba4-51b4-47e4-aa33-31b12075e2f3",
    "summary": "Customer acknowledged the pending EMI of ₹12,500 due on August 15 and promised to deposit the amount by tomorrow.",
    "extracted_data": {
      "emi_amount": 12500,
      "emi_due_date": "2025-08-15",
      "promise_to_pay_date": "2025-08-16"
    }
  }
}