A1ROUTESdevelopers
A1ROUTES.com
Developers/BusinessPhoneSystem
BUSINESSPHONESYSTEM · A1PBX

List call recordings

Find recorded calls available to your A1PBX API account.

Account availability: These examples describe the A1PBX version 7 interface. Confirm the endpoint, header authentication, response format, and record permissions for your assigned account before production use.

Request

Find recorded calls available to your A1PBX API account.

GET/view_call_recordingsA1PBX API

Parameters

ParameterTypeRequiredDescription
limitintegerNoRequested number of results. Confirm the allowed maximum for your account.
offsetintegerNoPagination position. Confirm offset semantics for your deployed API before incrementing it.

Examples

Request example
curl --fail-with-body --get \
  "https://$A1PBX_ACCOUNT_ID.a1routes.com/app/api/7/view_call_recordings" \
  --header "Authorization: Basic $A1PBX_API_KEY" \
  --data-urlencode "limit=20" \
  --data-urlencode "offset=0"

Response

Inspect an authorized response from your account to establish the returned fields, content type, and empty-result behavior. Response schemas are intentionally not asserted until verified for the deployed service.

Integration notes

This endpoint lists recorded calls. IVR prompts and other uploaded audio are separate resources. Use the identifier returned for the recording download endpoint; confirm its relationship to the CDR identifier rather than assuming they are interchangeable.

See authentication, pagination, and error handling.