Skip to main content
POST
/
core
/
api-keys
Create API Key
curl --request POST \
  --url https://api.integrations.commenda.io/v4/core/api-keys \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "name": "<string>"
}
'
{
  "request_id": "<string>",
  "data": {
    "apiKey": {
      "id": 123,
      "apiKey": "<string>"
    }
  }
}

Documentation Index

Fetch the complete documentation index at: https://integrations.docs.commenda.io/llms.txt

Use this file to discover all available pages before exploring further.

Create API Key.
The full apiKey string is only returned once at creation.

Authorizations

Authorization
string
header
required

Firebase ID token in the Authorization header. Optional rootfi_org_id header selects the active organization for multi-org users.

Body

application/json
name
string
required

Response

API key created.

request_id
string
required
data
V4CreateApiKeyResponse · object
required