Skip to main content
POST
/
calls
/
batch-get
Batch Get Calls
curl --request POST \
  --url https://api.revring.ai/v1/calls/batch-get \
  --header 'Content-Type: application/json' \
  --header 'x-api-key: <api-key>' \
  --data '
{
  "ids": [
    "<string>"
  ],
  "minimal": false
}
'
{
  "data": [
    {
      "id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
      "organizationId": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
      "fromNumber": "<string>",
      "toNumber": "<string>",
      "initiatedAt": "2023-11-07T05:31:56Z",
      "createdAt": "2023-11-07T05:31:56Z",
      "updatedAt": "2023-11-07T05:31:56Z",
      "agentId": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
      "sipTrunkId": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
      "agentCallerIdName": "<string>",
      "agentName": "<string>",
      "variables": {},
      "recordingUrl": "<string>",
      "hangupCause": "<string>",
      "errorMessage": "<string>",
      "transcript": [
        {}
      ],
      "summary": "<string>",
      "metrics": {},
      "startedAt": "2023-11-07T05:31:56Z",
      "endedAt": "2023-11-07T05:31:56Z",
      "durationSeconds": 123
    }
  ]
}

Documentation Index

Fetch the complete documentation index at: https://docs.revring.ai/llms.txt

Use this file to discover all available pages before exploring further.

Authorizations

x-api-key
string
header
required

API key for authentication. Generate API keys from the RevRing dashboard.

Body

application/json
ids
string[]
required

Call IDs to fetch

Required array length: 1 - 100 elements
minimal
boolean
default:false

Return a compact representation, omitting transcript, summary, metrics, and variables

Response

Matching calls

data
object[]