Checks whether multiple actors have permissions over a principal

POST /domains/{domainId}/principals/permissions/check

Parameters

Name Required Type Description
domainId true string The ID of the domain
HTTP Payload true string HTTP Payload

Response

"type": "object", "description": "List of Principals to Check", "properties": { "results": { "type": "array", "items": { "type": "object", "properties": { "permissionedId": { "type": "string" }, "principalId": { "type": "string" }, "permissionId": { "type": "string" }, "result": { "type": "boolean" } } } } } }