GET
/
org
/
organization
/
{organizationId}
curl --request GET \
  --url https://svc.sandbox.anon.com/org/organization/{organizationId} \
  --header 'Authorization: Bearer <token>'
{
  "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.

Headers

userId
string | null

The anon user id of the user making the request

orgId
string | null

The anon org id of the user making the request

Path Parameters

organizationId
string
required

ID of the Organization

Response

200 - application/json
Organization details retrieved 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?