Query Scheduled Call Report List
Query the scheduled call report list.
Request URL
GET {base_url}/{api_path}/call_schedule_report/list?access_token={access_token}
Request parameters
Parameter | Required | Type | Description |
---|---|---|---|
page | No | Integer | Define which page is displayed. |
page_size | No | Integer | Define how many records per page. |
sort_by | No | String | Define the sorting field. Valid value:
|
order_by | No | String | Define the display order. Valid value:
|
Response parameters
Parameter | Type | Description |
---|---|---|
errcode | Integer | Returned error code.
Note: You can check the error code and
error message in Error Code and Error Message.
|
errmsg | String | Returned message.
|
total_number | Integer | The total number of scheduled reports. |
data | Array<scheduled_reports> | The information of the scheduled reports. |
- scheduled_reports
-
Table 3. Parameter Type Description id Integer The unique ID of the scheduled call report. name String The name of the scheduled call report. format String The file format of the scheduled call report. date String The scheduled time of scheduled call report.
Examples
Request example
GET /openapi/v1.0/call_schedule_report/list?access_token=jw9RB1zwQ5g6qnoceH8vztrnaOiYoZwN&sort_by=name&order_by=desc HTTP/1.1
Host: yeastardocs.example.yeastarcloud.com
Response example
HTTP/1.1 200 OK
{
"errcode": 0,
"errmsg": "SUCCESS",
"total_number": 6,
"data": [
{
"id": 6,
"name": "test-extension-report",
"format": "csv",
"date": "2022/04/12 19:19:38"
},
{
"id": 3,
"name": "Support",
"format": "csv",
"date": "2022/03/14 13:17:57"
},
{
"id": 5,
"name": "Support2",
"format": "csv",
"date": "2022/03/14 18:00:00"
},
{
"id": 4,
"name": "Sales",
"format": "csv",
"date": "2022/03/14 13:18:53"
},
{
"id": 1,
"name": "test1",
"format": "csv",
"date": "2022/01/06 19:31:11"
},
{
"id": 2,
"name": "test2",
"format": "csv",
"date": "2022/03/02 13:39:14"
}
]
}