Skip to main content
POST
/
calls
/
{id}
/
extract
Run post-call extraction (Test Analysis / replay)
curl --request POST \
  --url https://api.vocobase.com/api/v2/calls/{id}/extract \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "dry_run": false
}
'
{
  "success": true,
  "data": {
    "call_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
    "session_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
    "dry_run": true,
    "extraction": {
      "model": "<string>",
      "extractedAt": "2023-11-07T05:31:56Z",
      "latencyMs": 123,
      "attempts": 123,
      "values": {},
      "error": "<string>"
    }
  }
}

Documentation Index

Fetch the complete documentation index at: https://docs.vocobase.com/llms.txt

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

Authorizations

Authorization
string
header
required

API key in format: rg_live_xxxx. Pass as a Bearer token in the Authorization header.

Path Parameters

id
string<uuid>
required

Call ID.

Body

application/json
dry_run
boolean
default:false

When true, return the extraction result without persisting it.

Response

Extraction result.

success
boolean
data
object