v1

latestOpenAPI 3.0.32026-07-17542197.8 KB
Namespace

Get namespace

Return the requested namespace by its ID.

get/v1/namespaces/{id}

Response

OK

idstring required

Unique identifier of the namespace.

namestring required

Name of the namespace.

descriptionstring nullable

Description of the namespace.

created_atstring date-time required

Date when the namespace was created.

updated_atstring date-time nullable required

Date when the namespace was updated.

Example response

{
  "id": "9bsv0s46s6s002p9ltq0",
  "name": "Engineering",
  "description": "Engineering team namespace",
  "projects": [
    {
      "id": "9bsv0s46s6s002p9ltq0",
      "key": "ENG",
      "name": "Engineering Project",
      "description": "Main engineering project",
      "logo": "https://example.com/logo.png",
      "status": "active"
    }
  ],
  "documents": [
    {
      "id": "9bsv0s46s6s002p9ltq0",
      "name": "Project Plan",
      "excerpt": "Overview of the project plan",
      "created_by": "9bsv0s46s6s002p9ltq0"
    }
  ]
}