POST
/
v2
/
project
/
folder
curl --request POST \
  --url https://api.sonderplan.com/v2/project/folder \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '{
  "name": "Andor Season One",
  "parent_folder_id": 5
}'
{
  "success": {
    "id": 1
  }
}

Authorizations

Authorization
string
header
required

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

Body

application/json
Project folder object that needs to be added

Returns the fields relevant to project folders

name
string
required

Folder Name

Example:

"Andor Season One"

parent_folder_id
integer

The ID of the folder that this project is sitting in

Example:

5

Response

200
application/json
Successful Operation
success
object