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

# Create Access Profile

> Creates a new access profile.

## Endpoint

`POST https://gateway.orkeia.ai/access-profiles`

## Headers

```
authorization: <your_token>
Content-Type: application/json
```

## Request Body (JSON)

```json theme={null}
{
  "name": "Manager",
  "description": "Limited access to management"
}
```

## Responses

### Response - Success

```json response theme={null}
{
  "status": "OK",
  "data": { "id": "string_id"}
}
```

### 500 — Bad Request

```json theme={null}
{
  "status": "ERROR",
  "code": "server/error",
  "data": null
}
```

### 400 — Client Error

```json theme={null}
{
  "status": "ERROR",
  "code": "client/error",
  "data": null
}
```

## Example (cURL)

```bash theme={null}
curl -X POST "https://gateway.orkeia.ai/access-profile"   -H "Authorization: Bearer <your_token>"   -H "Content-Type: application/json"   -d '{ "name": "Manager", "description": "Limited access to management" }'
```
