# Check Grant Notifications

To check items granted to the player from outside sources such as Loot boxes, you can periodically call the check grant notifications endpoint.

Along with details on what assets have been granted to the player it's also possible to see which source they were granted from

{% tabs %}
{% tab title="Unity" %}

```csharp
LootLockerSDKManager.GetAssetNotification((response) =>
{
    if (response.success)
    {
        Debug.Log("Successfully check asset notifications");
    }
    else
    {
        Debug.Log("Error checking asset notifications");
    }
});
```

{% endtab %}

{% tab title="Unreal" %}

{% endtab %}
{% endtabs %}


---

# Agent Instructions: Querying This Documentation

If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter:

```
GET https://docs.lootlocker.com/content/working-with-assets/how-to/check-grant-notifications.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
