Transcript LOL API
PATCH
/spaces/{spaceId}

Update workspace

Update workspace settings or metadata

/spaces/{spaceId}

The Authorization access token

Authorization

x-api-key<token>

In: header

Request Body

application/jsonOptional

Workspace preferences

findAndReplaceWordsarray<object>

name
Required
string

language
Required
string

templateId
Required
string

monthlyCreditLimitnumber

privacy
Required
WorkspacePrivacy

Value in: "PRIVATE" | "WHOLE_TEAM" | "SPECIFIC_MEMBERS"

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.

curl -X PATCH "https://transcript.lol/api/v1/spaces/string" \
  -H "Authorization: <token>" \
  -H "Content-Type: application/json" \
  -d '{
    "findAndReplaceWords": [
      {
        "find": "string",
        "replace": "string"
      }
    ],
    "name": "string",
    "language": "string",
    "templateId": "string",
    "monthlyCreditLimit": 0,
    "privacy": "PRIVATE"
  }'

Updated workspace info

{
  "findAndReplaceWords": [
    {
      "find": "string",
      "replace": "string"
    }
  ],
  "id": "string",
  "createdAt": "string",
  "updatedAt": "string",
  "name": "string",
  "language": "bg",
  "templateId": "string",
  "ownerId": "string",
  "_count": {
    "recordings": 0,
    "speakers": 0
  },
  "privacy": "PRIVATE"
}