> ## 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.

# PermissionCheckBatchUserResponse (JSON)

> PermissionCheckBatchUserResponse (JSON)

# PermissionCheckBatchUserResponse (JSON)

The reasons of a batch permission check for list of permission values for a single target user.

<a id="ID4EN" />

## PermissionCheckBatchUserResponse

The PermissionCheckBatchUserResponse object has the following specification.

| Member      | Type                                                                                              | Description                                                                                                                                                                                               |
| ----------- | ------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
| User        | string                                                                                            | Required. This member is <b>true</b> if the requesting user is allowed to perform the requested action with the target user.                                                                              |
| Permissions | Array of [PermissionCheckResponse (JSON)](/reference/live/rest/json/json-permissioncheckresponse) | Required. A [PermissionCheckResponse (JSON)](/reference/live/rest/json/json-permissioncheckresponse) for each permission that was asked for in the original request, in the same order as in the request. |

<a id="ID4E4B" />

## Sample JSON syntax

```json theme={null}
{
    "User": {"Xuid": "12345"},
    "Permissions":
    [
        {
            "isAllowed": true
        },
        {
            "isAllowed": false
        },
        {
            "isAllowed": false,
            "reasons":
            [
                {"reason": "BlockedByRequestor"},
                {"reason": "MissingPrivilege", "restrictedSetting": "VideoCommunications"}
            ]
        }
    ]
}
    
```

<a id="ID4EGC" />

## See also

<a id="ID4EIC" />

##### Parent

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


## Related topics

- [XblPrivacyBatchCheckPermissionAsync](/reference/live/xsapi-c/privacy_c/functions/xblprivacybatchcheckpermissionasync.md)
- [XblPrivacyCheckPermissionAsync](/reference/live/xsapi-c/privacy_c/functions/xblprivacycheckpermissionasync.md)
- [XblPermissionCheckResult](/reference/live/xsapi-c/privacy_c/structs/xblpermissioncheckresult.md)
- [XblPrivacyBatchCheckPermissionResult](/ko/reference/live/xsapi-c/privacy_c/functions/xblprivacybatchcheckpermissionresult.md)
- [XblPermission](/ja-jp/reference/live/xsapi-c/privacy_c/enums/xblpermission.md)
