Search all grants of a specific approle to any group

GET {{stripeUrl}}/admin/v1/Grants?filter=entitlement[attributeName eq "appRoles" and attributeValue eq "{{approleid}}"] and grantee.type eq "Group"

A Grant of an AppRole specifies as the granted 'app' the App that defines the AppRole, and specifies the AppRole as an entitlement.

There is only one way to query grants of AppRoles:

by searching /Grants directly, e.g.,:
    To search for Grants of a particular AppRole, filter on entitlement:
        filter=entitlement[attributeName eq "appRoles" and value eq "<idOfAppRole>"]
    To search for Grants of any AppRole defined by a particular App:
        filter=app.value eq "<idOfApp>" and entitlement.attributeName eq "appRoles"
    To search for Grants of any of several particular AppRoles:
        filter=entitlement[attributeName eq "appRoles" and (value eq "<idOfAppRole1>" or value eq "<idOfAppRole2>"... or value eq "<idOfAppRoleN>")]

See https://docs.oracle.com/en/cloud/paas/identity-cloud/rest-api/appmgmtrelationships.html for more information on understanding application management relationships between Apps, AppRoles, Users, and Groups.

Request Params

KeyDatatypeRequiredDescription
filterstring

HEADERS

KeyDatatypeRequiredDescription
Authorizationstring
Datestring