Last updated 1 year ago
Was this helpful?
In order to retrieve a active recording metadata, you can use the following endpoint.
curl "https://nest.messagebird.one/workspaces/8bc02f53-87ac-48d2-b4fd-c2cf856a305f/channels/880d8171-cbab-47bb-81b6-b1a0902da136/calls/0b4cbfa2-813f-4b93-8007-265875bb88bb/recordings/32b98cd8-db4b-4a47-816e-ff7ff72b1da6" \ -H 'Authorization: Bearer {Token}'
// N/A
{ "id": "32b98cd8-db4b-4a47-816e-ff7ff72b1da6", "channelId": "880d8171-cbab-47bb-81b6-b1a0902da136", "callId": "0b4cbfa2-813f-4b93-8007-265875bb88bb", "status": "available", "origin": "create-call", "duration": 0, "stereo": false, "createdAt": "2023-10-26T18:28:55.646Z", "updatedAt": "2023-10-26T18:28:55.646Z", "startedAt": "2023-10-26T18:28:55.373Z", "endedAt": "0001-01-01T00:00:00Z" }
Get a channel call recording
The ID of the workspace
The ID for a call
The ID for a channel
The ID for a call recording
GET /workspaces/{workspaceId}/channels/{channelId}/calls/{callId}/recordings/{recordingId} HTTP/1.1 Host: Authorization: Bearer jwt Accept: */*
OK
{ "id": "123e4567-e89b-12d3-a456-426614174000", "callId": "123e4567-e89b-12d3-a456-426614174000", "channelId": "123e4567-e89b-12d3-a456-426614174000", "status": "accepted", "origin": "call-command-record", "duration": 1, "stereo": true, "endCause": "text", "createdAt": "2025-06-18T18:34:37.333Z", "updatedAt": "2025-06-18T18:34:37.333Z", "startedAt": "2025-06-18T18:34:37.333Z", "endedAt": "2025-06-18T18:34:37.333Z" }