POST
/
v1
/
folders
curl --request POST \
  --url https://app.typebot.io/api/v1/folders \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '{
  "workspaceId": "<string>",
  "folderName": "<string>",
  "parentFolderId": "<string>"
}'
{
  "folder": {
    "id": "<string>",
    "createdAt": "<string>",
    "updatedAt": "<string>",
    "name": "<string>",
    "parentFolderId": "<string>",
    "workspaceId": "<string>"
  }
}

Authorizations

Authorization
string
headerrequired

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

Body

application/json
workspaceId
string
required
folderName
string
default:
parentFolderId
string

Response

200 - application/json
folder
object
required