v1

latestOpenAPI 3.1.02026-07-1414757122.7 KB
call events

Get call events list

Returns a paginated list of call events (incoming and outgoing calls tracked in CRM). Example: GET /crm/v1/events/call?page=1&list=20

get/crm/v1/events/call

Query parameters

pageinteger

Current page

listinteger

How many items should be per page

Response

Successful response

idinteger
task_idinteger
contact_idinteger
company_idinteger
deal_idinteger
lead_idinteger
entity_tablestring
subjectstring
call_type'outgoing' | 'incoming'
ended_call_statusstring
fromstring
tostring
begin_timeinteger
end_timeinteger
durationinteger
call_record_linkstring
notestring
integration_codestring
external_idinteger

Non-required. Used for communication with integrations

tmp_idinteger

Non-required. Used for communication with integrations

Example response

[
  {
    "id": 1,
    "task_id": 1,
    "deal_id": 1,
    "entity_table": "deals",
    "subject": "Sales contract negotiation",
    "call_type": "incoming",
    "ended_call_status": "missed",
    "begin_time": 1681893335,
    "end_time": 1681893685,
    "duration": 350,
    "note": "Call from the client",
    "integration_code": "unitalk_integration",
    "contacts": [
      {
        "id": 1,
        "title": "George Everest"
      }
    ],
    "companies": [],
    "employees": [
      1,
      2,
      3
    ],
    "tasks": {
      "id": 1,
      "title": "Missed call from 380667654321"
    }
  }
]