# Mobile - Sincronizar opções de verificação

`POST /instance/mobile/verification-options`

Pasta: **Instancia**

## Autenticação

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

## Descrição

# Sincronizar opções de verificação (POST)

Mesmo handler do GET: sincroniza opções de verificação mobile enviando o telefone no JSON.

Use quando preferir body em vez de query string.

## Endpoint

```http
POST {{baseUrl}}/instance/mobile/verification-options
```

## Autenticação

Header da instância:

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

## Corpo da requisição

| Campo | Tipo | Obrigatório | Descrição |
| --- | --- | --- | --- |
| `phone` | string | Não* | Número com DDI. Alias: `number`. Se omitido, usa o telefone vinculado. |

## Exemplo de Requisição

```bash
curl -X POST "{{baseUrl}}/instance/mobile/verification-options" \
  -H "token: {{token}}" \
  -H "Content-Type: application/json" \
  -d '{
  "phone": "5511999999999"
}'
```

## Resposta de Sucesso

```json
{
  "success": true,
  "verificationOptions": {
    "phone": "5511999999999",
    "whatsappAccountExists": true,
    "recommendedMethod": "sms",
    "methods": [
      {"id": "sms", "label": "SMS", "recommended": true, "available": true, "waitSeconds": 0}
    ]
  }
}
```

## Erros comuns

- `400` — instância não está em modo mobile
- `409` — telefone divergente do vinculado
- `503` — mobile bridge indisponível

## Observações

GET e POST apontam para `MobileVerificationOptions`. Body é opcional.

## Corpo (exemplo)

```json
{
  "phone": "5511999999999"
}
```

## cURL

```bash
curl -X POST "{{baseUrl}}/instance/mobile/verification-options" \
  -H "token: {{token}}" \
  -H "Content-Type: application/json" \
  -d '{
  "phone": "5511999999999"
}'
```

---

[Índice da pasta](./index.md) · [Índice geral](../index.md) · [UI](https://gozap.dev/docs?op=instancia/mobile-sincronizar-opcoes-de-verificacao)
