List Of CDRs
curl --location 'https://{{base_url}}/v3/cdr?limit=2&offset=0' \
--header 'Content-type: application/json' \
--header 'Authorization: Bearer {{token}}'
Response trả về:
{
"data": [
{
"id": "366d2a16-7d73-47ad-bc94-9bab059f0f85",
"parent_id": "366d2a16-7d73-47ad-bc94-9bab059f0f85",
"sip_call_id": "436447b4-3755-123c-18b6-fa163e71cc82",
"cause": "USER_BUSY",
"duration": 27,
"direction": "outbound",
"recording_url": "",
"extension": "",
"from_number": "02873003586",
"to_number": "0775702541",
"receive_dest": "",
"time_started": "2023-03-07 13:36:42",
"time_answered": "",
"time_ended": "2023-03-07 13:37:09",
"time_ringging": "2023-03-07 13:36:42",
"status": "busy",
"billsec": 0,
"app": "autocall",
"press_key": "{}",
"fullname": "",
"email": "",
"username": "",
"sip_hangup_disposition": "recv_refuse",
"campaign_uuid": "fdccdbf2-bc4b-4a0f-a7ea-cb0239daaa7d",
"lead_uuid": "2f8b1c0f-da79-4dfb-959d-1b611cf0cd6a",
"rate": "",
"digits": "",
"note": "",
"customer_fullname": "",
"customer_email": "",
"demand_customer": "",
"interest_segment": "",
"additional": {
"data1": 1,
"miengiam": "Giảm 50% gốc",
"phone_number": "0775702541",
"sdt": "0981218709",
"ten": "Đỗ Thị Ngà"
},
"autocall_presskey_epoch": "",
"time_presskey": "",
"presskey_delay": 0,
"autocall_recording_url": "https://pbx-loadtest.tel4vn.com/app/xml_cdr/download.php?id=QySNgNBK4NHgm"
},
{
"id": "35a4bf10-d536-40a6-826f-7ff10ed43d94",
"parent_id": "35a4bf10-d536-40a6-826f-7ff10ed43d94",
"sip_call_id": "3188d6eb-3755-123c-18b6-fa163e71cc82",
"cause": "USER_BUSY",
"duration": 20,
"direction": "outbound",
"recording_url": "",
"extension": "",
"from_number": "02873003586",
"to_number": "0775702541",
"receive_dest": "",
"time_started": "2023-03-07 13:36:12",
"time_answered": "",
"time_ended": "2023-03-07 13:36:32",
"time_ringging": "2023-03-07 13:36:12",
"status": "busy",
"billsec": 0,
"app": "autocall",
"press_key": "{}",
"fullname": "",
"email": "",
"username": "",
"sip_hangup_disposition": "recv_refuse",
"campaign_uuid": "fdccdbf2-bc4b-4a0f-a7ea-cb0239daaa7d",
"lead_uuid": "2f8b1c0f-da79-4dfb-959d-1b611cf0cd6a",
"rate": "",
"digits": "",
"note": "",
"customer_fullname": "",
"customer_email": "",
"demand_customer": "",
"interest_segment": "",
"additional": {
"data1": 1,
"miengiam": "Giảm 50% gốc",
"phone_number": "0775702541",
"sdt": "0981218709",
"ten": "Đỗ Thị Ngà"
},
"autocall_presskey_epoch": "",
"time_presskey": "",
"presskey_delay": 0,
"autocall_recording_url": "https://pbx-loadtest.tel4vn.com/app/xml_cdr/download.php?id=Nc73cZ9Ba44aD"
}
],
"limit": 2,
"offset": -1,
"total": 6
}
note
- Khi Get CDR cần phải truyền thêm tham số limit và offset trong param query. Nếu không truyền, hệ thống sẽ tự set limit bằng -1 và offset bằng -1 nên sẽ không response về data CDR cần lấy
HTTP Request
GET https://{{base_url}}/v3/cdr?limit=2&offset=0
Query Parameters
Parameter | Description | Example |
---|---|---|
start_date | Tìm kiếm cdrs theo khoảng thời gian (Khởi tạo cuộc gọi) | 2023-03-06 hoặc 2023-03-06 17:20:58 |
end_date | Tìm kiếm cdrs theo khoảng thời gian (Khởi tạo cuộc gọi) | 2023-03-07 hoặc 2023-03-07 00:00:00 |
extension | Cuộc gọi từ extension nào | 101 |
status | Trạng thái cuộc gọi | ANSWERED |
hotline | Tìm theo đầu số thực hiện cuộc gọi | 02873003586 |
phone | Từ hoặc tới số điện thoại nào | 0899888999 |
direction | Chiều cuộc gọi (inbound, outbound, local) | outbound |
campaign_uuid | Tìm kiếm theo campaign uuid | fdccdbf2-bc4b-4a0f-a7ea-cb0239daaa7d |
start_date_ended | Tìm kiếm cdrs theo khoảng thời gian (Kết thúc cuộc gọi) | 2023-03-06 hoặc 2023-03-06 17:20:58 |
end_date_ended | Tìm kiếm cdrs theo khoảng thời gian (Kết thúc cuộc gọi) | 2023-03-07 hoặc 2023-03-07 00:00:00 |
limit | Số lượng record trả về | 50 |
offset | Vị trí bắt đầu khi query | 0 |