Fetch details of all schedule calls

Sample Request

This API allows you to fetch details of all scheduled calls.

curl --request GET \
     --url https://api-https://api.acefone.in/v1/schedule_calls \
     --header 'accept: application/json'

Request Variables (Query Params)

Variable NameDescriptionData Type
limitnumber of records to be fetchedString
typetype of callString
to_datedate of scheduled callsString
pageindexing of the pageString
from_datedate of the scheduled callsString

Sample Response

📘Important

This API is accessible only through team member token which has the access to scheduled calls. Team Member Token can be generated from https://docs.acefone.in/reference/authentication-using-tokens

{
    "data": [
        {
            "id": 3665610,
            "agent_id": "380784",
            "customer_number": "988845xyz",
            "note": "",
            "schedule_date_time": "2024-05-10T13:58:00+0530",
            "status": 0,
            "created_by": "380784",
            "updated_by": "380784",
            "call_detail": null,
            "customer_name": "xyz",
            "reminder_schedule_callbacks": 0,
            "is_before": null,
            "reminder_time": null,
            "assigned_to": "05047530476",
            "assigned_agent_name": "04466692727",
            "call_end_min": 10,
            "call_end_time": "2024-05-10T14:08:00+0530",
            "created_at": "2024-05-10T13:52:22+0530",
            "updated_at": "2024-05-10T13:52:37+0530"
        }
    ],
    "meta": {
        "pagination": {
            "total": 1,
            "count": 1,
            "per_page": 25,
            "current_page": 1,
            "total_pages": 1,
            "links": {}
        }
    }
}

Response Variables

After the execution of the API, you will get the following response:

Variable NameDescriptionData Type
data[]id
data[]agent_id
data[]customer_number
data[]note
data[]schedule_date_time
data[]status
data[]created by
data[]updated by
data[]call_detail
data[]customer_name
data[]reminder_schedule_callbacks
data[]is_before
data[]reminder_time
data[]assigned_to
data[]assigned_agent_name
data[]call_end_min
data[]call_end_time
data[]created_at
data[]updated_at
meta.pagination.total
meta.pagination.count
meta.pagination.per_page
meta.pagination.curent_page
meta.pagination.total_pages
meta.pagination.links
Language
Click Try It! to start a request and see the response here!