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

6965ecf3ab92

Organization

Update organization

Update the organization by its ID.

patch/v1/organizations/{id}

Request body

namestring

Name of the organization.

emailstring email

Email address of the organization.

logostring uri nullable

Logo of the organization.

websitestring uri nullable

Work title of the user.

status'active' | 'deleted'

Status of the organization.

Example request

{
  "name": "ACME Inc.",
  "email": "info@example.com",
  "logo": "https://example.com/static/logo.png",
  "website": "https://example.com",
  "status": "active"
}

Response

OK

idstring required

Unique identifier of the organization.

namestring required

Name of the organization.

emailstring email required

Email address of the organization.

logostring uri nullable required

Logo of the organization.

websitestring uri nullable required

Work title of the user.

status'active' | 'deleted' required

Status of the organization.

member_countinteger nullable

Number of members in the organization when projected.

team_countinteger nullable

Number of teams in the organization when projected.

namespace_countinteger nullable

Number of namespaces in the organization when projected.

created_atstring date-time required

Date when the organization was created.

updated_atstring date-time nullable required

Date when the organization was updated.

Example response

{
  "id": "9bsv0s46s6s002p9ltq0",
  "name": "ACME Inc.",
  "email": "info@example.com",
  "logo": "https://example.com/static/logo.png",
  "website": "https://example.com",
  "status": "active",
  "member_count": 12,
  "team_count": 3,
  "namespace_count": 2
}