POST
/
org
/
organization
curl --request POST \
  --url https://svc.sandbox.anon.com/org/organization \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '{
  "name": "<string>",
  "member": {
    "name": "<string>",
    "email": "<string>",
    "password": "<string>"
  }
}'
{
  "id": "<string>",
  "name": "<string>",
  "logoUrl": "<string>",
  "members": [
    {
      "id": "<string>",
      "name": "<string>",
      "email": "<string>",
      "organizationId": "<string>",
      "role": "<string>"
    }
  ]
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Body

application/json
name
string
required
member
object
required

Response

200 - application/json
Organization created successfully.
id
string
required
name
string
required
members
object[]
required

Members of an organization can create api keys, user pools, and sdk clients

logoUrl
string | null

Was this page helpful?