Skip to content

Latest commit

 

History

History
28 lines (19 loc) · 485 Bytes

File metadata and controls

28 lines (19 loc) · 485 Bytes

Authentication

Bearer Token

Every request must include:

Authorization: Bearer <your_api_key>

API keys are not self-service — contact the Zero team to obtain credentials.

With the CLI

# Store token for all future commands
zero-cli login <YOUR_API_TOKEN>

# Or provide per-command
zero-cli contacts list --bearer-token <YOUR_API_TOKEN>

Raw HTTP

curl https://api.zero.inc/api/workspaces \
  -H "Authorization: Bearer <YOUR_API_TOKEN>"