Projects

Project management endpoints

List organization projects

get

Retrieve all projects in an organization with optional filtering

Authorizations
AuthorizationstringRequired
Bearer authentication header of the form Bearer <token>.
Path parameters
org_idstringRequired

Organization ID

Query parameters
pageinteger · min: 1Optional

The page number to retrieve.

Default: 1
limitinteger · min: 1 · max: 100Optional

Number of items per page

Default: 20
searchstringOptional

Search term to filter projects by name

Responses
200

Organization projects retrieved successfully

application/json
get
/api/v1/orgs/{org_id}/projects

Create project in organization

post

Create a new project within an organization

Authorizations
AuthorizationstringRequired
Bearer authentication header of the form Bearer <token>.
Path parameters
org_idstringRequired

Organization ID

Body

Request payload for creating or updating a project

namestring · min: 1 · max: 100Required

Name of the project (1-100 characters)

Example: My Project
descriptionstringOptional

Optional description of the project's purpose or environment

Example: Production environment for our main service
Responses
post
/api/v1/orgs/{org_id}/projects

Get project in organization

get

Retrieve project details by ID within an organization

Authorizations
AuthorizationstringRequired
Bearer authentication header of the form Bearer <token>.
Path parameters
org_idstringRequired

Organization ID

project_idstringRequired

Project ID

Responses
200

Project retrieved successfully

application/json
get
/api/v1/orgs/{org_id}/projects/{project_id}

Delete project in organization

delete

Delete project by ID within an organization

Authorizations
AuthorizationstringRequired
Bearer authentication header of the form Bearer <token>.
Path parameters
org_idstringRequired

Organization ID

project_idstringRequired

Project ID

Responses
200

Project deleted successfully

application/json
delete
/api/v1/orgs/{org_id}/projects/{project_id}

Last updated