Getting Started with Our API
This guide will walk you through authenticating with our API and making your first request.
Generating an API Key
Before you can make requests, you need to generate an API key.
- As an admin, go to 'Settings' > 'Channels' > 'API'.
- Click the 'Add API Token' button.
- Give your token a descriptive name to help you identify it later.
- Copy the generated token. Store it securely, as it will not be shown again.
Making an Authenticated Request
All API requests must be authenticated using your API token. We use Bearer authentication. Include your token in the Authorization header of your requests.
Here is an example using cURL to fetch a list of users:
curl https://api.example.com/v2/users.json \
-H "Authorization: Bearer YOUR_API_TOKEN"Rate Limits
Please be aware of our API rate limits, which are documented in our full API reference. Exceeding the rate limit will result in a 429 Too Many Requests error.
Comments
0 comments
Please sign in to leave a comment.