Skip to main content
PUT
/
transcribe
/
workspace
/
{id}
Update a workspace
curl --request PUT \
  --url https://api.pawa-ai.com/v1/transcribe/workspace/{id} \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "name": "My Workspace"
}
'
{
  "success": true,
  "message": "Workspace updated successfully",
  "data": {
    "id": 5,
    "name": "My Workspace",
    "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

Body

application/json
name
string
Example:

"My Workspace"

Response

Workspace updated successfully

success
boolean
required
Example:

true

message
string
required
Example:

"Workspace updated successfully"

data
object
required