> For the complete documentation index, see [llms.txt](https://helpcenter.talentlead.nl/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://helpcenter.talentlead.nl/talent-assessment/api/authenticatie-and-scopes.md).

# Authenticatie & scopes

#### API-sleutels

Elke request vereist een API-sleutel in de `Authorization`-header:

```bash
curl https://assessment.talentlead.nl/api/v1/organization \
  -H "Authorization: Bearer tl_live_..."
```

Sleutels maak je aan onder **Beheer → API** in het dashboard.

{% hint style="warning" %}
De sleutel is **één keer zichtbaar** bij het aanmaken en daarna niet meer op te vragen. Bewaar hem direct in een secret manager. Kwijt of gelekt? Trek de sleutel in en maak een nieuwe aan: intrekken werkt per direct.
{% endhint %}

* Maximaal **10 actieve sleutels** per gebruiker; geef elke integratie een eigen sleutel.
* Sleutels kunnen optioneel een **vervaldatum** hebben.
* De API is beschikbaar op **Professional** en **Business**. Wordt het abonnement inactief, dan blijft data leesbaar maar worden schrijfacties geblokkeerd.

#### Scopes

Elke sleutel krijgt scopes die bepalen wat hij mag. Een `*:write`-scope impliceert de bijbehorende `*:read`.

| Scope               | Geeft toegang tot                                      |
| ------------------- | ------------------------------------------------------ |
| `organization:read` | Organisatiegegevens, abonnement en verbruik            |
| `persons:read`      | Personen in de talentpool en hun assessmentstatus      |
| `persons:write`     | Personen importeren, bijwerken en archiveren           |
| `invitations:read`  | Uitnodigingen en hun status                            |
| `invitations:write` | Uitnodigingen aanmaken, opnieuw versturen en intrekken |
| `results:read`      | Resultaten, matches en PDF-rapporten                   |
| `profiles:read`     | Competentieprofielen en hun weging                     |
| `webhooks:manage`   | Webhook-endpoints beheren                              |

#### Rate limits

Limieten gelden **per organisatie** (sleutels stapelen niet):

| Plan         | Limiet              |
| ------------ | ------------------- |
| Professional | 60 requests/minuut  |
| Business     | 300 requests/minuut |

Elke response bevat `X-RateLimit-Limit`, `X-RateLimit-Remaining` en `X-RateLimit-Reset`. Bij overschrijding krijg je `429` met een `Retry-After`-header.


---

# 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://helpcenter.talentlead.nl/talent-assessment/api/authenticatie-and-scopes.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.
