curl --request DELETE \
--url https://{tenantDomain}/api/v2/groups/{id}/roles \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"roles": [
"<string>"
]
}
'Unassign one or more roles from a specified group.
curl --request DELETE \
--url https://{tenantDomain}/api/v2/groups/{id}/roles \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"roles": [
"<string>"
]
}
'Documentation Index
Fetch the complete documentation index at: https://auth0.com/llms.txt
Use this file to discover all available pages before exploring further.
Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Unique identifier for the group (service-generated).
18 - 26Array of role IDs to remove from the group.
1Unique identifier for the role (service-generated).
Roles successfully removed from group.
このページは役に立ちましたか?