List Transcriptions

In order to retrieve all transcriptions in your workspace you can use this request.

List transcriptions

List transcriptions

GET/workspaces/{workspaceId}/transcriptions
Authorization
Path parameters
workspaceId*string
Query parameters
Response

OK

Body
resultsarray of Transcription (object)
nextPageTokenstring

The token that can be passed as pageToken in URL to retrieve the next set of results. If missing, no more results to display.

Request
const response = await fetch('/workspaces/{workspaceId}/transcriptions', {
    method: 'GET',
    headers: {
      "Authorization": "Bearer jwt"
    },
});
const data = await response.json();
Response
{
  "results": [
    {
      "id": "123e4567-e89b-12d3-a456-426614174000",
      "recordingId": "123e4567-e89b-12d3-a456-426614174000",
      "status": "accepted",
      "stereo": false,
      "locale": "en-US",
      "url": "text",
      "summary": "text",
      "createdAt": "2024-07-26T23:35:15.860Z",
      "updatedAt": "2024-07-26T23:35:15.860Z"
    }
  ],
  "nextPageToken": "text"
}
curl "https://nest.messagebird.one/workspaces/{workpaceId}/transcriptions/" \
     -H 'Authorization: Bearer {Token}'

Last updated