List all the user consented organizations of a application.
List all the user consented organizations for a application by application id and user id.
Path parameters
-
The unique identifier of the application.
-
The unique identifier of the user.
GET /api/applications/{id}/users/{userId}/consent-organizations
curl \
-X GET https://[tenant_id].logto.app/api/applications/{id}/users/{userId}/consent-organizations \
-H "Authorization: Bearer $ACCESS_TOKEN"
Response examples (200)
{
"organizations": [
{
"tenantId": "string",
"id": "string",
"name": "string",
"description": "string",
"customData": {},
"isMfaRequired": true,
"branding": {
"logoUrl": "string",
"darkLogoUrl": "string",
"favicon": "string",
"darkFavicon": "string"
},
"createdAt": 42.0
}
]
}