POST
/
upload-call
curl --request POST \
  --url https://api.fixa.dev/v1/upload-call \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '{
  "callId": "<string>",
  "agentId": "<string>",
  "stereoRecordingUrl": "<string>",
  "saveRecording": true,
  "language": "en",
  "metadata": {
    "regionId": "USA",
    "ttsModel": "eleven-labs-v2"
  },
  "webhookUrl": "<string>"
}'
{
  "success": true,
  "callId": "<string>"
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Body

application/json

Call recording details

The body is of type object.

Response

200 - application/json

call uploaded successfully

The response is of type object.