latestOpenAPI 3.0.3raw.githubusercontent.com2026-08-167449145.8 KB

6965ecf3ab92

Project

Get project

Return the requested project by its ID.

get/v1/projects/{id}

Response

OK

idstring required

Unique identifier of the project.

keystring required

Key of the project.

namestring required

Name of the project.

descriptionstring nullable

Description of the project.

logostring uri nullable

Logo of the project.

status'active' | 'pending' required

Status of the project.

teamsstring[] required

IDs of the teams in the project.

document_countinteger nullable

Number of documents that belong to the project when projected.

issue_countinteger nullable

Number of issues that belong to the project when projected.

created_atstring date-time required

Date when the project was created.

updated_atstring date-time nullable required

Date when the project was updated.

Example response

{
  "id": "9bsv0s46s6s002p9ltq0",
  "key": "ENG",
  "name": "Engineering Project",
  "description": "Main engineering project",
  "logo": "https://example.com/logo.png",
  "status": "active",
  "teams": [
    "9bsv0s46s6s002p9ltq0"
  ],
  "document_count": 4,
  "issue_count": 12
}