> ## 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 Perfis de Acesso

> Retorna todos os perfis de acesso disponíveis.

## Endpoint

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

## Cabeçalhos

```
authorization:  <seu_token>
```

## Respostas

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

## Exemplo (cURL)

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

## Campos

| Campo       | Tipo   | Descrição              |
| ----------- | ------ | ---------------------- |
| id          | string | ID do perfil de acesso |
| name        | string | Nome do perfil         |
| description | string | Descrição do perfil    |
