אקסטרה
  1. Calls
אקסטרה
  • Calls
    • /calls/
      POST
    • /calls/get-recording-urls/
      POST
    • /click2call/
      GET
    • /calls/recording/
      GET
  • SMS
    • /sms/send/
      POST
  • Authorization
    • /auth/key/
      GET
  • Webhooks
    • Call Events
    • Call Events
  1. Calls

/calls/

POST
https://www.exm.co.il/api/v1/
Get calls history for a user, as used in the Calls section in the user panel in Extra.
Use params to filter and paginate list.
List is always sorted by time of call.

Request

Authorization
Provide your bearer token in the
Authorization
header when making requests to protected resources.
Example:
Authorization: Bearer ********************
Body Params application/json

Examples

Responses

🟢200Success
application/json
Body

Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request POST 'https://www.exm.co.il/api/v1/' \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data-raw '{
    "id": "oYTOFyLB",
    "starred": true,
    "line_types": [
        null
    ],
    "direction": "IN",
    "call_types": [
        "incoming"
    ],
    "duration": {
        "gte": 0,
        "lte": 0
    },
    "time": {
        "from": "2020-12-31 21:00:00",
        "to": "2024-01-01 10:34:12"
    },
    "pagination": {
        "next": "OPF3aA09CvIdtCcpTxWTov3teco2OAcD11umIJ/DcXqxovT7R/o0VLBtRv5kMVVibfdo",
        "items": 20
    }
}'
Response Response Example
{
    "metadata": {
        "items_per_page": 20,
        "response_count": 20,
        "next_page_token": "OPF3aA09CvIdtCcpTxWTov3teco2OAcD11umIJ\/DcXqxovT7RPI\/VrNkQP5kNl1mafFq"
    },
    "calls": [
        {},
        {}
    ]
}
Modified at 2025-07-22 16:07:45
Next
/calls/get-recording-urls/
Built with