v4

latestOpenAPI 3.0.22026-08-02109239415.7 KB
manage

Create an API key for a specific organization

post/manage/api/api_keys_v2

Query parameters

organization_idstring required

Base64 encoded organization ID to create the API key for

Request body

labelstring

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

Example request

{
  "label": "label"
}

Response

API key created successfully

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

creation_timestring date-time required

The time at which the API key was created

Example response

{
  "creation_time": "2024-05-25T02:00:30+00:00",
  "api_key": "example_api_key_replace_with_your_actual_key",
  "api_key_id": "JRPVD7jWR1aTBYiJ0UFVOg=="
}