Skip to main content
PATCH
/
insight
/
{rec_id}
/
speaker_name
Update Speaker Name
curl --request PATCH \
  --url https://api.example.com/insight/{rec_id}/speaker_name \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "speaker": "<string>",
  "speaker_name": "<string>"
}
'
{
  "detail": [
    {
      "loc": [
        "<string>"
      ],
      "msg": "<string>",
      "type": "<string>"
    }
  ]
}

Authorizations

Authorization
string
header
required

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

Path Parameters

rec_id
string<uuid>
required

Query Parameters

version
integer | null

The version of the transcript

Body

application/json
speaker
string
required

Unique speaker identifier (e.g., 'Speaker_A')

speaker_name
string
required

New display name for the speaker

Required string length: 1 - 255

Response

Successful Response