Authorization header. Requests made without a key, or with an invalid or revoked key, are rejected with an HTTP 401 Unauthorized response. There are no session cookies or OAuth flows required — your API key is the single credential for all programmatic access.
Generating an API key
1
Open API Keys settings
In FusionDesk, navigate to Settings in the left sidebar, then select API Keys from the settings menu.
2
Create a new key
Click Create New Key. Enter a descriptive name for the key — for example,
Production Integration or CI Pipeline — so you can identify it later. Select the appropriate scope (see API key scopes below).3
Copy and store the key
After the key is created, FusionDesk displays it once. Copy it immediately and store it in a secure secrets manager or environment variable. You will not be able to view the full key again after closing this dialog.
FusionDesk uses key prefixes to distinguish environments. Keys prefixed with
fd_test_ operate against your sandbox environment and do not affect production data. Keys prefixed with fd_live_ interact with your live production environment. Always confirm you are using the correct key prefix before running scripts or deploying integrations.Using the API key in requests
Include your API key as a Bearer token in theAuthorization header of every request. Set Content-Type: application/json on requests that include a body.
API key scopes
When you create a key, you assign it one of two permission scopes that control what it can do:
Follow the principle of least privilege: assign read-only scope unless your integration explicitly requires write access.
Rotating and revoking API keys
You should rotate API keys periodically and immediately if you suspect a key has been compromised. To rotate a key:- Generate a new key in Settings > API Keys with the same name and scope as the existing key.
- Update all services and integrations to use the new key.
- Verify the new key is working correctly in all environments.
- Revoke the old key by clicking Revoke next to it in the API Keys list.
401 Unauthorized response.

