Organizations

Create organization

Creating a new organization.

post/api/v1/organizations

Request body

idinteger

The id of the organization ( Deprecated: Use namespace instead. )

logoURLstring

URL to a logo of the organization

namestring required

The name of the organization

namespacestring required

The namespace of the organization

Example request

{
  "id": 100,
  "logoURL": "/api/v1/public/images/abcdef",
  "name": "ACME Inc.",
  "namespace": "de.acme"
}

Response

OK

idinteger

The id of the organization ( Deprecated: Use namespace instead. )

logoURLstring

URL to a logo of the organization

namestring required

The name of the organization

namespacestring required

The namespace of the organization

Example response

{
  "id": 100,
  "logoURL": "/api/v1/public/images/abcdef",
  "name": "ACME Inc.",
  "namespace": "de.acme"
}

Changes

No recorded changes to this endpoint across all 1 revision of this API.