GET
/
api
/
v1
/
organizations
/
{organizationId}
/
team-members
/
{teamMemberId}
/
realms
cURL
curl --request GET \
  --url https://api.drip.re/api/v1/organizations/{organizationId}/team-members/{teamMemberId}/realms \
  --header 'Authorization: Bearer <token>'
{
  "realms": [
    {
      "id": "<string>",
      "name": "<string>",
      "subdomain": "<string>",
      "description": "<string>",
      "permissions": [
        "<string>"
      ]
    }
  ],
  "teamMember": {
    "id": "<string>",
    "role": "<string>"
  }
}

Authorizations

Authorization
string
header
required

API Key

Path Parameters

organizationId
string
required
teamMemberId
string
required

Response

200
application/json

Default Response

The response is of type object.