Organization

Create organization

Create a new organization.

post/v1/organizations

Request body

slugstring required

Globally unique canonical kebab-case slug. Reserved values are join and new. Must not parse as an xid.

namestring required

Name of the organization.

emailstring email required

Email address of the organization.

logostring uri

Logo of the organization.

websitestring uri

Work title of the user.

Example request

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

Response

Example response

idstring required

ID of the newly created resource.

Changes