> ## 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.

# Listar Perfiles de Acceso

> Devuelve todos los perfiles de acceso disponibles.

## Endpoint

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

## Cabeçalhos

```
authorization:  <tu_token>
```

## Respuestas

### 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
}
```

## Ejemplo (cURL)

```bash theme={null}
curl -X GET "https://gateway.orkeia.ai/access-profile"   -H "authorization:  <tu_token>"
```

## Campos

| Campo       | Tipo   | Descripción             |
| ----------- | ------ | ----------------------- |
| id          | string | ID del perfil de acceso |
| name        | string | Nombre del perfil       |
| description | string | Descripción del perfil  |
