Skip to main content
PATCH
/
transcribe
/
workspace
/
{id}
/
transcriptions
/
{transcriptionId}
Edit a transcription
curl --request PATCH \
  --url https://api.pawa-ai.com/v1/transcribe/workspace/{id}/transcriptions/{transcriptionId} \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "transcript": {
    "filename": "meeting.mp3",
    "transcript": "Hello world..."
  }
}
'
{
  "success": true,
  "message": "Transcription updated successfully",
  "data": {
    "id": 1,
    "fileName": "meeting_recording.mp3",
    "fileUrl": "https://storage.domain.com/files/meeting_recording.mp3",
    "fileType": "audio/mpeg",
    "duration": 320,
    "transcript": {
      "filename": "testing audio.mp3",
      "transcript": "[Environmental Sounds]"
    },
    "status": "COMPLETED",
    "createdAt": "2026-02-23T08:00:00.000Z",
    "updatedAt": "2026-02-23T08:10:00.000Z"
  }
}

Documentation Index

Fetch the complete documentation index at: https://docs.pawa-ai.com/llms.txt

Use this file to discover all available pages before exploring further.

Authorizations

Authorization
string
header
required

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

Path Parameters

id
number
required
transcriptionId
number
required

Body

application/json
transcript
object
required

The manually edited transcript content

Example:
{
"filename": "meeting.mp3",
"transcript": "Hello world..."
}

Response

Transcription updated successfully

success
boolean
required
Example:

true

message
string
required
Example:

"Transcription updated successfully"

data
object
required