1
0
mirror of https://github.com/Unleash/unleash.git synced 2024-10-18 20:09:08 +02:00
unleash.unleash/website/docs/reference/api/legacy/unleash/index.md
Thomas Heartman 9c7eadded0
docs: switch order of api doc sidebar items; put legacy docs under legacy header (#4135)
Also adds a caution admonition to the legacy doc index page
2023-07-04 14:19:34 +02:00

1.5 KiB

id title
index Legacy API Documentation

:::caution

The docs in this category are legacy documentation. You should prefer to use the Unleash OpenAPI docs instead whenever possible.

:::

Client API

This describes the API provided to unleash-clients.

Since v4.0.0 all operations require an API token with Client level access.

With versions earlier than v4.0.0 and insecure authentication no authentication is required.

Admin API (internal)

The internal API used by the Admin UI (unleash-frontend). Since v4.0.0 all operations require an API token with Admin level access:

With versions earlier than v4.0.0 and insecure authentication Basic Auth (with curl -u myemail@test.com:) is enough.

System API's

Content-Type

All endpoints require application/json as content type, so if you're using curl remember to add

-H "Content-Type: application/json"