Skip to main content
Every request must include your API key. Keys are created and managed in Settings → API Keys (agency owners only).

Sending your key

Send the key using one of these headers:
curl https://server.flozy.com/api/v1/external/leads \
  -H "X-API-Key: flz_live_your_key_here"

Key format

Keys are prefixed with flz_live_ followed by 64 hexadecimal characters:
flz_live_a3f8c2d1e4b5f6a7b8c9d0e1f2a3b4c5d6e7f8a9b0c1d2e3f4a5b6c7d8e9f0
Keys are shown only once at creation. Store them securely — you cannot retrieve a key after closing the creation dialog.

Scopes

Each key is issued with a specific set of scopes. Requests using a key that lacks the required scope return 403.
ScopeDescription
read:leadsList and read leads
write:leadsCreate, update leads, and upsert lead status
delete:leadsMove leads to trash
read:tasksList and read tasks
write:tasksCreate and update tasks
delete:tasksMove tasks to trash
read:opportunitiesList and read opportunities
write:opportunitiesCreate and update opportunities
delete:opportunitiesMove opportunities to trash
read:contactsList and read lead contacts
write:contactsCreate and update lead contacts
delete:contactsDelete lead contacts
read:pipelinesList pipelines and their stages
read:lead_statusesList lead status definitions
read:custom_fieldsList custom field definitions
Follow the principle of least privilege — only grant the scopes your integration actually needs.