# Mobile - Obter features Business

`POST /business/get/features`

Pasta: **Business**

## Autenticação

```http
token: {{token}}
```

## Descrição

# Obter features Business (mobile)

Consulta, via socket cobaltmobile, quais recursos Business estão habilitados (Meta Verified, GenAI, etc.). Use só com instância em modo mobile conectada.

## Endpoint

`POST {{baseUrl}}/business/get/features`

## Autenticação

Envie o token da instância no header `token: {{token}}`.

## Corpo da requisição

| Campo | Tipo | Obrigatório | Descrição |
|---|---|---|---|
| `meta_verified` | boolean | Não | Incluir flag Meta Verified. |
| `marketing_messages` | boolean | Não | Incluir Marketing Messages. |
| `genai` | boolean | Não | Incluir GenAI. |
| `genai_image` | boolean | Não | Incluir GenAI Image. |
| `meta_one` | boolean | Não | Incluir Meta One. |

## Exemplo de Requisição

```bash
curl --request POST '{{baseUrl}}/business/get/features' \
  --header 'token: {{token}}' \
  --header 'Content-Type: application/json' \
  --data-raw '{
  "meta_verified": false,
  "marketing_messages": false,
  "genai": true,
  "genai_image": true,
  "meta_one": false
}'
```

## Resposta de Sucesso

```json
{
  "success": true,
  "features": {
    "meta_verified": false,
    "marketing_messages": false,
    "genai": true,
    "genai_image": true,
    "meta_one": false
  }
}
```

## Erros comuns

- `401 Unauthorized`: o header `token` não foi enviado ou é inválido.
- `400 Bad Request`: JSON inválido ou campo obrigatório ausente.
- `500 Internal Server Error`: bridge mobile indisponível, instância não conectada em modo mobile, ou falha no WhatsApp.

## Observações

**Mobile only.** Falha se o bridge mobile não estiver disponível.

## Corpo (exemplo)

```json
{
  "meta_verified": false,
  "marketing_messages": false,
  "genai": true,
  "genai_image": true,
  "meta_one": false
}
```

## cURL

```bash
curl -X POST "{{baseUrl}}/business/get/features" \
  -H "token: {{token}}" \
  -H "Content-Type: application/json" \
  -d '{
  "meta_verified": false,
  "marketing_messages": false,
  "genai": true,
  "genai_image": true,
  "meta_one": false
}'
```

---

[Índice da pasta](./index.md) · [Índice geral](../index.md) · [UI](https://gozap.dev/docs?op=business/mobile-obter-features-business)
