Checks whether multiple actors have permissions over an application

POST /applications/permissions/check

Parameters

Name Required Type Description
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"
          }
        }
      }
    }
  }
}