Authentication

All API requests require authentication. The platform supports API key and token-based authentication depending on the route.

API Key (Apigee)

curl -X GET "https://<host>/api/v3/tasks" \
  -H "x-api-key: <your-api-key>"

Token-Based Access

curl -X GET "https://<host>/MYWORK/service/api/v3/tasks" \
  -H "Authorization: Bearer <your-token>" \
  -H "Content-Type: application/json"