v4

latestOpenAPI 3.0.22026-08-02109239415.7 KB
manage

Creates an API key.

post/manage/api/api_keys

Request body

labelstring

User-supplied label shown alongside the key in the management UI.

Example request

{
  "label": "label"
}

Response

The newly created API key

api_keystring required

The API key to use when making authenticated requests with the API. This key will only be shown once.

api_key_idstring required

The ID of the API key. A URL safe base64 encoded UUID

Example response

{
  "api_key": "example_api_key_replace_with_your_actual_key",
  "api_key_id": "JRPVD7jWR1aTBYiJ0UFVOg=="
}