/v1/auth-check operations to confirm that an integration can reach the API with the permissions it needs. These checks do not create or change service records.
Which Check To Use
Most integrations should start with
GET /v1/auth-check. Run POST /v1/auth-check only when the integration creates services.
Recommended Verification Sequence
- Create an API key with the scopes the integration needs.
- Configure the IP Firewall for the system’s outbound IP address when IP restriction is enabled.
- Send
GET /v1/auth-checkfrom the same system and network path that will call the API. - Send
POST /v1/auth-checkif the integration will create services. - Continue to the required service, request, or report endpoint after the checks succeed.
Check Authentication
GET /v1/auth-check verifies the key without requiring a feature scope. A successful response returns broker, key, and permission details.
Open The Authentication Check Reference
Use this operation first when diagnosing HTTP 401, 403, or 429 responses. It tests the same key, firewall, and rate-limit controls used by the other public API operations.
Check Service Write Access
POST /v1/auth-check verifies that the key has services:write or admin:full. It does not create a service.
Open The Service Write Access Reference
A successful general authentication check does not guarantee service-write access. If this check returns HTTP 403, add the required scope or use a different key.
Read Authentication for key formats, scope rules, and authentication errors.
