For the complete documentation index, see llms.txt. This page is also available as Markdown.

Projects

Organize test environments

Interactions with projects

Get a list of projects

get

List projects and their sandboxes to which the API token has access.

Authorizations
Api-TokenstringRequired

Pass the API token in the Api-Token

Responses
200

Lists project attributes and inboxes of this project with their attributes.

  • permissions returns the permissions of the token for the project
application/json
idintegerOptional
namestringOptional
get/api/projects

Create project

post

The project name is min 2 characters and max 100 characters long.

Authorizations
Api-TokenstringRequired

Pass the API token in the Api-Token

Body
Responses
200

Returns project details

application/json
idintegerOptional
namestringOptional
post/api/projects

Get project by ID

get

Get the project and its sandboxes.

Authorizations
Api-TokenstringRequired

Pass the API token in the Api-Token

Path parameters
project_idinteger · int64 · min: 1Required

Unique project ID

Example: 4032
Responses
200

Returns project details

application/json
idintegerOptional
namestringOptional
get/api/projects/{project_id}

Delete project

delete

Delete project and its sandboxes.

Authorizations
Api-TokenstringRequired

Pass the API token in the Api-Token

Path parameters
project_idinteger · int64 · min: 1Required

Unique project ID

Example: 4032
Responses
200

Returns id of the deleted project.

application/json
idintegerOptional
delete/api/projects/{project_id}

Update project

patch

Update project name. The project name is min 2 characters and max 100 characters long.

Authorizations
Api-TokenstringRequired

Pass the API token in the Api-Token

Path parameters
project_idinteger · int64 · min: 1Required

Unique project ID

Example: 4032
Body
Responses
200

Returns updated project details

application/json
idintegerOptional
namestringOptional
patch/api/projects/{project_id}

Last updated

Was this helpful?