Skip to main content
GET
/
recordings
List call recordings
curl --request GET \
  --url https://api.wavix.com/v1/recordings
{
  "recordings": [
    {
      "id": 123,
      "created_at": "2023-06-15T10:30:00Z",
      "duration": 120,
      "from": "1234567890",
      "to": "0987654321",
      "call_uuid": "aa566501-c591-4a8b-b3b9-cc1295398b72",
      "url": "https://api.wavix.com/v1/recordings/uuid"
    }
  ],
  "invalid": {},
  "pagination": {
    "current_page": 2,
    "per_page": 25,
    "total": 101,
    "total_pages": 5
  }
}

Authorizations

appid
string
query
required

An API key to authorize your request

Query Parameters

from_date
string<date>

Start date of your search time range, in yyyy-mm-dd format.

Example:

"2023-01-01"

to_date
string<date>

End date of your search time range, in yyyy-mm-dd format.

Example:

"2023-12-31"

from
string

Filter results by Caller ID.

Example:

"1234567890"

to
string

Filter results by destination phone number. The parameter can be either full phone number or a part of it.

Example:

"1987654321"

call_uuid
string

Filter results by call ID.

Example:

"aa566501-c591-4a8b-b3b9-cc1295398b72"

sip_trunks
string[]

Filter results by SIP trunk IDs.

Example:
["123", "456"]
dids
string[]

Filter results by DIDs

Example:
["12344213"]

Response

A list of recorded calls matching the filter criteria.

recordings
CallRecordingResponse · object[]
invalid
object
pagination
object
I