1. Webhooks
אקסטרה
  • 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. Webhooks

Call Events

Webhook
POST
call-events
This a request WE make to your pre-defined webhook url, for phone call events.
Set webhook url and request method in the settings screens of the desired service: mobile line, virtual number, IVR number, etc...
Read about webhooks here:
https://www.exm.co.il/kb/automation/call-webhook.html

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://your-api-server.com' \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data-raw '{
    "id": "string",
    "event": "string",
    "type": "string",
    "own_type": "string",
    "ivr_dialed": 0,
    "duration": 0,
    "note": "string",
    "starred": true,
    "time": {
        "timezone": "string",
        "gmt_offset": "string",
        "start": "string",
        "end": "string"
    },
    "numbers": {
        "own": {
            "friendly": "string",
            "e164": "string"
        },
        "caller": {
            "friendly": "string",
            "e164": "string"
        },
        "destination": {
            "friendly": "string",
            "e164": "string"
        }
    },
    "contact": {
        "id": "bsn6HIpx",
        "name": "שליח HFD"
    },
    "recording": {
        "url": "https://www.exm.co.il/filename.mp3"
    },
    "AI": {
        "status": "COMPLETED",
        "summary": {
            "gist": "string",
            "body": "string",
            "questions": {
                "next_steps": [
                    "string"
                ]
            }
        }
    }
}'
Response Response Example
{
    "id": "string",
    "event": "string",
    "type": "string",
    "own_type": "string",
    "ivr_dialed": 0,
    "duration": 0,
    "note": "string",
    "starred": true,
    "time": {
        "timezone": "string",
        "gmt_offset": "string",
        "start": "string",
        "end": "string"
    },
    "numbers": {
        "own": {
            "friendly": "string",
            "e164": "string"
        },
        "caller": {
            "friendly": "string",
            "e164": "string"
        },
        "destination": {
            "friendly": "string",
            "e164": "string"
        }
    },
    "contact": {
        "id": "bsn6HIpx",
        "name": "שליח HFD"
    },
    "recording": {
        "url": "https://www.exm.co.il/filename.mp3"
    },
    "AI": {
        "status": "COMPLETED",
        "summary": {
            "gist": "string",
            "body": "string",
            "questions": {
                "next_steps": [
                    "string"
                ]
            }
        }
    }
}
Modified at 2025-08-04 06:59:01
Previous
/auth/key/
Next
Call Events
Built with