v1

latestOpenAPI 3.0.32026-07-17542197.8 KB
Organization
Namespace

Get organization namespaces

Return the namespaces that belong to the organization.

get/v1/organizations/{id}/namespaces

Query parameters

offsetinteger

Number of resources to skip.

limitinteger

Number of resources to return.

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"
      }
    ]
  }
]