developer portal

Errors

What each status code means, and what to do about it.

Status codes

CodeMeaningWhat to do
200OKThe response body holds the requested resource.
400Bad RequestThe request is invalid (missing parameter, wrong body shape). Fix the call and resend. Don't retry.
401UnauthorizedThe token is wrong, revoked, or missing. Check theAuthorization: Bearer itr_pat_... header. Don't retry until the token is fixed.
403ForbiddenThe token is valid but lacks the required scope. Add the rightApi: ... scope on the token's Privileges page in IntelliTracer. Don't retry.
404Not FoundThe resource doesn't exist, or not within your tenant. Check theId and the path. Don't retry.
429Too Many RequestsYou hit the rate limit. Wait the number of seconds in theRetry-After header and try again. SeeRate limits.
500504Server-side errorTransient. Retry with exponential backoff (see below). If the failure persists past 5 attempts, escalate tosupport.

More