# Response Codes

### 200: OK <a href="#id-200" id="id-200"></a>

The request was successful!

```c
{ "code": 200, "message": "OK" }
```

### 201: CREATED <a href="#id-201" id="id-201"></a>

The requested resource has been created.

```c
{ "code": 201, "message": "Created" }
```

### 202: ACCEPTED <a href="#id-202" id="id-202"></a>

The request has been accepted - continue.

```c
{ "code": 202, "message": "Accepted" }
```

### 204: NO CONTENT <a href="#id-204" id="id-204"></a>

The requested resource has been deleted/no longer exists.

```c
{ "code": 204, "message": "No content" }
```

### 400: BAD REQUEST <a href="#id-400" id="id-400"></a>

The request was not formatted correctly. Read the docs and try again.

```c
{ "code": 400, "message": "Bad request" }
```

### 401: UNAUTHORIZED <a href="#id-401" id="id-401"></a>

The provided authorization was not correct. Can be sent if a user fails to authenticate.

```c
{ "code": 401, "message": "Unauthorized" }
```

### 402: PAYMENT REQUIRED <a href="#id-402" id="id-402"></a>

You need an upgraded plan for this.

```c
{ "code": 402, "message": "Payment required" }
```

### 403: FORBIDDEN <a href="#id-403" id="id-403"></a>

You do not have access to this resource

```c
{ "code": 403, "message": "Forbidden" }
```

### 404: NOT FOUND <a href="#id-404" id="id-404"></a>

Resource not found. Make sure the search item or URL is correct

```c
{ "code": 404, "message": "Not found"}
```

### 410: GONE <a href="#id-410" id="id-410"></a>

The resource has expired. Likely a password has been changed since the specified token was made.

```c
{ "code": 410, "message": "Gone" }
```

### 429: TOO MANY REQUESTS <a href="#id-429" id="id-429"></a>

You are being ratelimited. Please slow down or contact support to increase limits.

```c
{ "code": 429, "message": "Too many requests" }
```

### 507: OUT OF STORAGE <a href="#id-507" id="id-507"></a>

This user has run out of custom attributes. Upgrade plan for more.

```c
{ "code": 507, "message": "Out of storage"}
```

## Other Errors <a href="#other" id="other"></a>

If you are getting other error codes, check server status or contact support. This is usually due to a hosting outage.
