> ## Documentation Index
> Fetch the complete documentation index at: https://docs.yativo.com/llms.txt
> Use this file to discover all available pages before exploring further.

# Get Payout Form Fields

> Retrieve the required form fields for a specific payout method

Returns the dynamic form fields required to add a beneficiary payment method or execute a payout. Fields vary by country and payment method.

```
GET /beneficiary/form/show/{payment_method_id}
```

## Path parameters

<ParamField path="payment_method_id" type="number" required>
  The ID of the payment method, obtained from `GET /payment-methods/payout`.
</ParamField>

<RequestExample>
  ```bash cURL theme={null}
  curl -X GET 'https://api.yativo.com/api/v1/beneficiary/form/show/42' \
    -H 'Authorization: Bearer YOUR_ACCESS_TOKEN'
  ```
</RequestExample>

<ResponseExample>
  ```json Success — Chile Bank Transfer theme={null}
  {
    "gateway_id": 42,
    "currency": "CLP",
    "form_data": [
      {
        "key": "account_number",
        "label": "Account Number",
        "type": "text",
        "required": true
      },
      {
        "key": "bank_code",
        "label": "Bank",
        "type": "select",
        "required": true,
        "options": [
          { "value": "001", "label": "Banco de Chile" },
          { "value": "009", "label": "Banco Internacional" }
        ]
      },
      {
        "key": "account_type",
        "label": "Account Type",
        "type": "select",
        "required": true,
        "options": [
          { "value": "checking", "label": "Checking Account" },
          { "value": "savings", "label": "Savings Account" }
        ]
      },
      {
        "key": "rut",
        "label": "RUT (Chilean Tax ID)",
        "type": "text",
        "required": true
      }
    ],
    "created_at": "2026-04-01T10:00:00.000000Z",
    "updated_at": "2026-04-01T10:00:00.000000Z"
  }
  ```

  ```json Success — Mexico SPEI theme={null}
  {
    "gateway_id": 15,
    "currency": "MXN",
    "form_data": [
      {
        "key": "clabe",
        "label": "CLABE",
        "type": "text",
        "required": true
      }
    ],
    "created_at": "2026-04-01T10:00:00.000000Z",
    "updated_at": "2026-04-01T10:00:00.000000Z"
  }
  ```
</ResponseExample>
