> ## Documentation Index
> Fetch the complete documentation index at: https://devdocs.xbox.com/llms.txt
> Use this file to discover all available pages before exploring further.

# PermissionCheckBatchResponse (JSON)

> PermissionCheckBatchResponse (JSON)

# PermissionCheckBatchResponse (JSON)

The results of a batch permission check for a list of permission values for multiple users.

<a id="ID4EN" />

## PermissionCheckBatchResponse

The PermissionCheckBatchResponse object has the following specification.

| Member    | Type                                                                                                                | Description                                                                                                                                                                                                                         |
| --------- | ------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
| Responses | Array of [PermissionCheckBatchUserResponse (JSON)](/reference/live/rest/json/json-permissioncheckbatchuserresponse) | Required. A [PermissionCheckBatchUserResponse (JSON)](/reference/live/rest/json/json-permissioncheckbatchuserresponse) object for each permission that was asked for in the original request, in the same order as in that request. |

<a id="ID4EQB" />

## Sample JSON syntax

```json theme={null}
{
    "responses":
    [
        {
            "user": {"xuid":"12345"},
            "permissions":
            [
                {
                    "isAllowed":true
                },
                {
                    "isAllowed":true
                }
            ]
        },
        {
            "user": {"xuid":"54321"},
            "permissions":
            [
                {
                    "isAllowed":false,
                    "reasons":
                    [
                        {"reason":"NotAllowed"}
                    ]
                },
                {
                    "isAllowed":false,
                    "reasons":
                    [
                        {"reason":"PrivilegeRestrictsTarget", "restrictedSetting":"AllowProfileViewing"}
                    ]
                }
            ]
        }
    ]
}
    
```

<a id="ID4EZB" />

## See also

<a id="ID4E2B" />

##### Parent

[JavaScript Object Notation (JSON) Object Reference](/reference/live/rest/json/atoc-xboxlivews-reference-json)
