Getting Started
Quick Start
- Request an access token using
POST /v1/oauth/token. - Call
GET /v1/oauth/meto validate authentication context. - Use endpoint groups from the documentation pages.
- 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}}"
}'