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

# PermissionCheckResponse (JSON)

> PermissionCheckResponse (JSON)

# PermissionCheckResponse (JSON)

The results of a check from a single user for a single permission setting against a single target user.

<a id="ID4EN" />

## PermissionCheckResponse

The PermissionCheckResponse object has the following specification.

| Member    | Type                                                                                          | Description                                                                                                                                      |
| --------- | --------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------ |
| IsAllowed | Boolean value                                                                                 | Required. This member is <b>true</b> if the requesting user is allowed to perform the requested action with the target user.                     |
| Results   | Array of [PermissionCheckResult (JSON)](/reference/live/rest/json/json-permissioncheckresult) | Optional. If <b>IsAllowed</b> was false and the check was denied by something related to the requester, indicates why the permission was denied. |

<a id="ID4E3B" />

## Sample JSON syntax

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

<a id="ID4EFC" />

## See also

<a id="ID4EHC" />

##### Parent

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


## Related topics

- [XblPermissionCheckResult](/reference/live/xsapi-c/privacy_c/structs/xblpermissioncheckresult.md)
- [XblPrivacyCheckPermissionAsync](/reference/live/xsapi-c/privacy_c/functions/xblprivacycheckpermissionasync.md)
- [Privacy and permissions overview](/services/xbox-services/fundamentals/identity/privacy/live-privacy-overview.md)
- [XblPrivacyCheckPermissionResult](/ja-jp/reference/live/xsapi-c/privacy_c/functions/xblprivacycheckpermissionresult.md)
- [XblPermission](/ja-jp/reference/live/xsapi-c/privacy_c/enums/xblpermission.md)
