v1

latestOpenAPI 3.1.1LicenseRef-Proprietary2026-07-1310179223.1 KB
Projects

Create Section

Create a new section in a project.

post/projects/{project_id}/sections

Path parameters

project_idstring required
Example:ev:1234567789001

Project ID

Request body

namestring required
status'open' | 'archived'
placeBeforeinteger[]

IDs of sections to place this one before (create only).

collapsedboolean

Example request

{
  "name": "Section Name",
  "status": "open"
}

Response

Created

idnumber required
namestring required
projectstring required
positionnumber required
status'open' | 'archived'
collapsedboolean nullable

Example response

{
  "id": 1234,
  "name": "Section Name",
  "project": "ev:1234567890",
  "position": 1,
  "status": "open"
}