# Listar metodos de pagamento

`GET /instance/account/pay/methods`

Pasta: **Instancia**

## Autenticação

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

## Descrição

# Listar métodos de pagamento

Lista os métodos de pagamento da conta WhatsApp Business (`w:pay` / `get-methods`). Disponível apenas em `connection_mode=mobile`.

## Endpoint

``` http
GET {{baseUrl}}/instance/account/pay/methods
```

## Autenticação

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

## Resposta

``` json
{
  "success": true,
  "pay": {
    "action": "get-methods",
    "version": "3",
    "instance_id": "…",
    "support_phone": "18002128552",
    "methods": [
      {
        "credential_id": "…",
        "country": "BR",
        "type": "pix_key",
        "flow": "p2m",
        "metadata": {
          "pix_key_type": "CPF",
          "pix_display_name": "Loja Exemplo",
          "pix_key": "00000000000"
        }
      }
    ]
  }
}
```

## Observações

Mobile only. Sem body.

## cURL

```bash
curl -X GET "{{baseUrl}}/instance/account/pay/methods" \
  -H "token: {{token}}"
```

---

[Índice da pasta](./index.md) · [Índice geral](../index.md) · [UI](https://gozap.dev/docs?op=instancia/listar-metodos-de-pagamento)
