Transcript LOL API
PATCH
/spaces/{spaceId}/recordings/{recordingId}

Update recording metadata

Update the recording metadata

/spaces/{spaceId}/recordings/{recordingId}

The Authorization access token

Authorization

x-api-key<token>

In: header

Request Body

application/jsonOptional

New recording metadata

title
Required
string

Recording title

Path Parameters

spaceId
Required
string

ID of the workspace. You can find from the url in dashboard when you open the workspace or using the list workspaces endpoint.

recordingId
Required
string

ID of the recording. You can find from the url in dashboard when you open the workspace or using the list recordings endpoint.

curl -X PATCH "https://transcript.lol/api/v1/spaces/string/recordings/string" \
  -H "Authorization: <token>" \
  -H "Content-Type: application/json" \
  -d '{
    "title": "string"
  }'

Recording metadata

{
  "id": "string",
  "createdAt": "string",
  "updatedAt": "string",
  "workspaceId": "string",
  "title": "string",
  "sourceUrl": "string",
  "mediaType": "AUDIO",
  "source": "string",
  "duration": 0,
  "status": "MEDIA_IMPORT_UPLOADING",
  "recordingFolderId": "string",
  "isMediaDeleted": true,
  "createdById": "string",
  "autoDeleteMediaAfter": "string"
}