curl --request PATCH \
--url https://api.member.dev/api/v1/teams/{team_id}/media/{media_id}/transcript \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/vnd.api+json' \
--data '
{
"data": {
"attributes": {
"words": [
{
"end_ms": 123,
"start_ms": 123,
"word": "<string>",
"confidence": 123,
"speaker_label": "<string>"
}
],
"language": "<string>"
},
"type": "transcripts"
}
}
'