---
title: "Response Parameters"
slug: "api-response-parameters"
updated: 2025-04-25T09:08:12Z
published: 2025-04-25T09:08:12Z
canonical: "docs.britive.com/api-response-parameters"
---

> ## Documentation Index
> Fetch the complete documentation index at: https://docs.britive.com/llms.txt
> Use this file to discover all available pages before exploring further.

# Response Parameters

### Common Response Parameters

The common response parameters used in Britive APIs are shown in the following table:

| HTTP Status Code | Reason | Response Type |
| --- | --- | --- |
| 200 | OK | object |
| 201 | Created |  |
| 204 | No Content |  |
| 400 | Bad Request |  |
| 401 | Unauthorized |  |
| 403 | Forbidden |  |
| 404 | Not Found |  |
| 405 | Method not allowed |  |
| 409 | Conflict |  |
| 500 | Internal Server Error |  |

---

### Common Error Response API Object

An example of the common API error response object is given here.

```
{
    "status": 400,
    "message": "App id '62hnp3zkv5jx1p8k74zj' does not exist.",
    "errorCode": "A-0003",
    "details": null
}
```
