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

/calls/get-recording-urls/

POST
https://www.exm.co.il/api/v1/calls/get-recording-urls/
Pass call id(s) to generate and get back publicly accessible url(s) to that/those recording(s).
WARNING: USE WITH CAUTION
This method creates a publicly accessible url(s).
ANYONE with these url(s) can access the corresponsing call recording(s).
BEST PRACTIVE: use GET: /calls/recording/ to get the call recording itself, or provide config.ttl
Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request POST 'https://www.exm.co.il/api/v1/calls/get-recording-urls/' \
--header 'Content-Type: application/json' \
--data-raw '{
    "ids": [
        "qSMaMqg5Da"
    ],
    "config": {
        "ttl": 0
    }
}'
Response Response Example
Valid request, no call recording found
{
    "success": true,
    "urls": [
        {
            "id": "XT2NBKU1Da8",
            "code": 404
        }
    ]
}

Request

Authorization
Provide your bearer token in the
Authorization
header when making requests to protected resources.
Example:
Authorization: Bearer ********************
Body Params application/json
ids
array[string]
required
max 100 call ids
>= 1 items<= 100 items
config
object 
required
configuration object to apply to all urls
ttl
integer 
required
time in minutes, before url expires - 0 = ever
Examples

Responses

🟢200Success
application/json
Body
success
boolean 
required
was it successful?
urls
array [object {4}] 
required
one element per each call id passed
id
string 
required
call id corresponding to input
ttl
integer 
required
0=public, >0=expire time in minutes
>= 0<= 10
Multiple of:
1
code
integer 
required
0 = url generated successfuly; 404 = call or call recording not found
Examples:
0404
url
string 
required
The publicly accessible url for the call recording
Modified at 2025-07-09 13:42:55
Previous
/calls/
Next
/click2call/
Built with