# Support

Are you in need of support? Please read this guide so that we can provide you with the best support possible.

We offer support through our [Discord](https://discord.gg/lootlocker).

{% hint style="warning" %}
Our Support Hours are *09:00 - 17:00 CET on weekdays.*
{% endhint %}

### How to Help Us Help You

When asking for support, there are some things you can have in place to get the correct answer faster! Below is a list of things we require in order to help you.

* [Domain Key](https://github.com/lootlocker/gitbook-sync/blob/main/the-basics/support/getting-help.md#domain-key)
* [Trace ID](https://github.com/lootlocker/gitbook-sync/blob/main/the-basics/support/getting-help.md#trace-id)
* [What Did You Expect Should Happen?](https://github.com/lootlocker/gitbook-sync/blob/main/the-basics/support/getting-help.md#a-short-description-of-what-you-expected)
* [What Actually Happened?](https://github.com/lootlocker/gitbook-sync/blob/main/the-basics/support/getting-help.md#a-short-description-of-what-actually-happens)

#### Domain Key

By providing us with your game's Domain Key we're able to quickly learn more about your game and make sure nothing behind the scenes of LootLocker is causing any problems.

{% hint style="danger" %}
Do NOT share this Key with anyone outside of our Support Tickets!
{% endhint %}

To locate your Domain Key, navigate to the Web Console -> Settings -> [API Keys](https://console.lootlocker.com/settings/api-keys)

<figure><img src="/files/bJ8ToW3fQno649rKLJau" alt=""><figcaption><p><a href="https://console.lootlocker.com/settings/api-keys">Domain Key location in the Web Console</a></p></figcaption></figure>

#### Trace ID

The Trace ID provides us with a more descriptive error message. Here's how to get it:

{% tabs %}
{% tab title="Unity" %}
We're forcing an error so we can find the trace\_id.\
We start a session and try to get a progression with an incorrect key. This results in an error.

```csharp
LootLockerSDKManager.GetProgression("IncorrectKey", (response) => 
{
  if(!response.success)
    {
      Debug.Log(response.text);
    }
});
```

You will now be able to find the error in the Console. Select the error message highlighted in blue beneath, to copy the trace\_id easily by then copying it from beneath.

<figure><img src="/files/LpHkI01fezBMacM1gCVE" alt=""><figcaption></figcaption></figure>
{% endtab %}

{% tab title="Unreal" %}

<figure><img src="/files/fEEaU8Qdcy8PNkctqccc" alt=""><figcaption><p>We don't start a session before this to force an error</p></figcaption></figure>

Here we're attempting to set the profile to public, however, in this case we have not logged in yet to force an error so we can show you where the Trace ID can be found.

To easily copy the Trace ID, ensure you have Output Log open in your Unreal project.

<figure><img src="/files/5fkbThQTi6XMmlSCZNc6" alt=""><figcaption><p>Should you not have this open, navigate to: Window -> Developer Tools -> Output Log.</p></figcaption></figure>

<figure><img src="/files/IV59aoIWHTMclfZ5yRAl" alt=""><figcaption></figcaption></figure>

From here you can copy the "trace\_id" and send with your message!
{% endtab %}
{% endtabs %}

#### What Did You Expect to Happen?

Please provide a short description of what you expected to happen. This gives us a clear understanding of what you're trying to achieve and helps us understand your goal.

#### What Actually Happened?

Sometimes the devil is in the detail, so please provide a short description outlining what actually happened. This may give us some clues to where to look for the issue.

### Methods of Support

{% tabs %}
{% tab title="Support Channel" %}
Our [Support Channel](https://discord.com/channels/684473225308405795/717723259084341258) should be the first place to solve your issue. Try searching for your question, as it is likely that someone else has had the issue before and a solution is already available! Check out the gif below to learn how to search for specific topics!

<figure><img src="/files/QbBhAaXAySQkP6fMDswZ" alt=""><figcaption><p>Example of searching in support for guest login questions and answers</p></figcaption></figure>

Should you not be able to find your solution, you can send a message specifying what the issue is and what you were expecting to happen. Share some code as well if relevant!

{% hint style="info" %}
Code blocks on Discord allows us to read your code more easily, use them by doing
{% endhint %}

````csharp
```csharp
LootLockerSDKManager.GetProgression("SomeKey", (response) => 
{
  if(!response.success)
    {
      Debug.Log(response.text);
    }
});
```
````

{% endtab %}

{% tab title="Forums" %}
Another way of looking for help is through our [forum channel](https://discord.com/channels/684473225308405795/1019885357342412852). This channel consists of posts that you can filter through tags and search for.

<figure><img src="/files/TVFHCNocUvtBBQmYkbgf" alt=""><figcaption></figcaption></figure>
{% 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/the-basics/support.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.
