Skip to main content

Getting Started

Quick Start

  1. Request an access token using POST /v1/oauth/token.
  2. Call GET /v1/users/current to validate authentication context.
  3. Use endpoint groups from the documentation pages.
  4. Subscribe to webhooks to receive updates without polling.

First Request Example

curl -X POST "{{BASE_URL}}/v1/oauth/token" \
-H "Content-Type: application/json" \
-H "Accept: application/json" \
-d '{
"grant_type": "password",
"username": "{{USERNAME}}",
"password": "{{PASSWORD}}"
}'

Next