Skip to main content
POST
/
api
/
v1
/
voc
/
tenants
/
{tenantId}
/
recording
Upload a recording for VOC processing
curl --request POST \
  --url https://platform.crescendo.ai/api/v1/voc/tenants/{tenantId}/recording \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: multipart/form-data' \
  --form 'metadata=<string>' \
  --form audio='@example-file' \
  --form file='@example-file'
{
  "id": "job-voc-001"
}

Authorizations

Authorization
string
header
required

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

Path Parameters

tenantId
string
required

Tenant identifier.

Body

multipart/form-data
metadata
string
required

JSON string containing recording metadata. Must include id.

audio
file

Audio file (mp3 or wav).

file
file

Alternative field name for the audio file (mp3 or wav).

Response

Accepted

id
string
required