> For the complete documentation index, see [llms.txt](https://docs.elixir.app/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://docs.elixir.app/dashboard/reward-center/game-quests/update-progress.md).

# Update Progress

Finally, the Progress Reporting Endpoint enables game servers to securely report user progress events to the Quest System API. This server-to-server communication ensures the integrity and authenticity of progress reports through RSA signature-based authentication.

#### Authentication Workflow:

1. **API Key Generation:**
   * Game developers will need to get their [key pairs](/dashboard/management/api-keys.md) consisting of public and private keys.
   * Private keys are securely stored on the game server and used to sign progress reports.
2. **RSA Signature Generation:**
   * Before sending a progress report, the game server generates an RSA signature for the request payload using its private key.
   * The signature is appended to the request headers for authentication purposes.
3. **Signature Verification:**
   * Upon receiving a progress report, the Quest System API server extracts the RSA signature from the request headers.
   * The API server validates the signature against the corresponding public key associated with the game server.
   * If the signature is valid, the progress report is accepted and processed. Otherwise, the request is rejected.

{% content-ref url="/pages/IUKlYE4VFuPt3tu6XRf2" %}
[Game Quests](/api-docs/api-docs-1/game-quests.md)
{% endcontent-ref %}

The Progress Reporting Endpoint facilitates secure and reliable communication between game servers and the Quest System API, ensuring the integrity and authenticity of progress reports through RSA signature-based authentication. By following the authentication workflow and adhering to the request format, game developers can seamlessly integrate progress reporting into their server-side systems, enabling users to advance in quests and earn rewards effectively.

<br>


---

# Agent Instructions
This documentation is published with GitBook. GitBook is the documentation platform designed so that both humans and AI agents can read, navigate, and reason over technical content effectively. Learn more at gitbook.com.

## 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, and the optional `goal` query parameter:

```
GET https://docs.elixir.app/dashboard/reward-center/game-quests/update-progress.md?ask=<question>&goal=<endgoal>
```

`ask` is the immediate question: it should be specific, self-contained, and written in natural language.
`goal` is optional and describes the broader end goal you are ultimately trying to accomplish on behalf of the user. GitBook uses it to tailor the answer towards what is most useful for that goal.

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.
