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

# Remover Setor

> Remove um setor específico.

## Endpoint

`DELETE https://gateway.orkeia.ai/sectors/{id}`

**Autenticação**\
Requer cabeçalho `authorization:  <seu_token>`.

## Parâmetros de Caminho

| Nome | Tipo   | Obrigatório | Descrição                     | Exemplo       |
| ---- | ------ | ----------- | ----------------------------- | ------------- |
| id   | string | Sim         | Identificador único do setor. | SECTOR\_12345 |

## Exemplo (cURL)

```bash theme={null}
curl -X DELETE "https://gateway.orkeia.ai/sectors/SECTOR_12345" \
  -H "authorization:  <seu_token>"
```

## Respostas

### Response - Success

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

### 500 — Server Error

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

### 400 — Client Error

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