> For the complete documentation index, see [llms.txt](https://resources.atriptech.com/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://resources.atriptech.com/api-document/troubleshooting-and-support/errors-handing/common-and-access-errors.md).

# Common & Access Errors

{% hint style="info" %}
💬 **Need help?** If you're stuck, ask Eva on ATRIP for instant diagnostics.

<a href="https://www.atriptech.com/" class="button primary" data-icon="comments">Ask Eva</a>
{% endhint %}

Use this page when a request fails before business processing starts.

Start here when you need to:

* understand why a request failed before the business flow started
* check credentials, JSON format, or access scope
* decide whether to fix the request or retry once

### FAQ

#### Which common access errors usually need a request fix first?

Codes such as `100`, `901`, and `902` usually mean required fields, request format, or permission scope are not correct.

Fix the request before retrying.

#### Which common access errors can be retried once?

Codes such as `9999` or `-1` can be retried once when the issue looks transient.

If the same failure repeats, capture request context and escalate.

### What this page covers

* Missing fields
* Invalid request format
* Credential and access failures
* Generic system errors

### Common codes

#### `100` Missing required request data

A mandatory field is missing.

**Action**

* Check required parameters
* Rebuild the request body
* Retry after validation

#### `900` Unauthorized access

Credentials are wrong, account status is invalid, or the request targets data outside your scope.

**Action**

* Check `x-atlas-client-id`
* Check `x-atlas-client-secret`
* Confirm the account is active

#### `901` Illegal request data

The request format is invalid.

**Action**

* Send JSON
* Check field types and nesting
* Validate required structure before retry

#### `902` Access denied

The request is blocked due to permission or account scope.

**Action**

* Re-check credentials
* Confirm the account can access this capability
* Contact Atlas if the request should be allowed

#### `9999` System error

Unexpected platform-side failure.

**Action**

* Retry once
* If it repeats, capture request IDs and escalate

#### `-1` Common error

Fallback error used when a more specific code is not returned.

**Action**

* Check the request context
* Retry if transient
* Escalate if repeated

### Quick retry guide

#### Fix the request first

Examples:

* `100`
* `901`
* `902`

#### Retry once, then escalate if repeated

Examples:

* `9999`
* `-1`

### Recommended troubleshooting order

1. Confirm credentials and account status
2. Validate JSON format and required fields
3. Retry once for transient failures
4. Escalate with request context if the error repeats

### What comes next?

After the access or request issue is fixed, return to the workflow page you were trying to use and continue from there.

### Related pages

* [Authentication & Request Basics](/api-document/readme/quick-start/making-requests.md)
* [Help & Support](/api-document/troubleshooting-and-support.md)


---

# Agent Instructions
This documentation is published with GitBook. GitBook is the documentation platform designed so that both humans and AI agents can read, navigate, and reason over technical content effectively. Learn more at gitbook.com.

## Querying This Documentation
If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter, and the optional `goal` query parameter:

```
GET https://resources.atriptech.com/api-document/troubleshooting-and-support/errors-handing/common-and-access-errors.md?ask=<question>&goal=<endgoal>
```

`ask` is the immediate question: it should be specific, self-contained, and written in natural language.
`goal` is optional and describes the broader end goal you are ultimately trying to accomplish on behalf of the user. GitBook uses it to tailor the answer towards what is most useful for that goal.

The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
