Get the realms that an app is authorized to access. Can only be used by the app itself.
curl --request GET \
--url https://api.drip.re/api/v1/apps/{appId}/authorized-realms \
--header 'Authorization: Bearer <token>'{
"data": [
{
"id": "<string>",
"realmId": "<string>",
"platformType": "<string>",
"platformId": "<string>",
"createdAt": "<string>",
"updatedAt": "<string>",
"approvedScopes": [
"<string>"
]
}
],
"meta": {
"totalCount": 123,
"hasNextPage": true,
"nextCursor": "<unknown>"
}
}Was this page helpful?
curl --request GET \
--url https://api.drip.re/api/v1/apps/{appId}/authorized-realms \
--header 'Authorization: Bearer <token>'{
"data": [
{
"id": "<string>",
"realmId": "<string>",
"platformType": "<string>",
"platformId": "<string>",
"createdAt": "<string>",
"updatedAt": "<string>",
"approvedScopes": [
"<string>"
]
}
],
"meta": {
"totalCount": 123,
"hasNextPage": true,
"nextCursor": "<unknown>"
}
}