Skip to main content
API key management is an enterprise feature. Contact your account manager to get access. Once enabled, you’ll receive a master API key that can create, list, and modify all other keys on your account.

How it works

You use a single master key to manage all sub-keys. Sub-keys are the keys your teams, workflows, or integrations use for API calls. The master key itself cannot be modified or deleted.

Key attributes

FieldTypeDescription
api_keystring (UUID)Unique identifier for the key
notesstringLabel or description — useful for identifying which team or system uses it
masterbooleantrue for the master key, false for all sub-keys
activebooleantrue if the key can make API calls, false if deactivated
per_intervalintegerMaximum requests allowed per interval
interval_secondsintegerInterval duration in seconds — always 60

Available operations

OperationEndpoint
List keysGET /v1/api-keys
Create a keyPOST /v1/api-keys
Modify a keyPUT /v1/api-keys
All three endpoints require your master API key in the x-api-key header. Requests authenticated with a sub-key will be rejected.