Skip to main content
PATCH
/
workspaces
/
{workspaceId}
/
folders
/
{id}
Update a folder
curl --request PATCH \
  --url https://api.tally.so/workspaces/{workspaceId}/folders/{id} \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "name": "<string>"
}
'

Authorizations

Authorization
string
header
required

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

Path Parameters

workspaceId
string
required

The ID of the workspace the folder belongs to

id
string
required

The ID of the folder to update

Body

application/json
name
string
required

The new name for the folder

Response

Folder updated successfully