GET
/
api
/
v1
/
apps
/
{appId}
/
authorized-realms
/
search
curl --request GET \
  --url https://api.drip.re/api/v1/apps/{appId}/authorized-realms/search \
  --header 'Authorization: Bearer <token>'
{
  "data": [
    {
      "id": "<string>",
      "realmId": "<string>",
      "platformType": "<string>",
      "platformId": "<string>",
      "approvedScopes": [
        "<string>"
      ],
      "createdAt": "<string>",
      "updatedAt": "<string>"
    }
  ],
  "meta": {
    "totalCount": 123,
    "hasNextPage": true,
    "nextCursor": null
  }
}

Authorizations

Authorization
string
header
required

API Key

Path Parameters

appId
string
required

Query Parameters

type
enum<string>
required
Available options:
realmId,
platformId
values
string
required

Comma-separated list of values to search for

take
number
default:10
Required range: 1 <= x <= 100
from
string

Cursor to start from

Response

200 - application/json
Default Response
data
any[]
meta
object