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

# Channel Extra Parameters by Country

> channelExtra parameter reference by country and payment method for global payment

When calling the [Transfer Request](/api-reference/transfers/transfer) API, some countries and payment methods require additional payee information to be passed in `channelExtra`. Choose the parameter structure that matches the destination country and payment method.

| Country   | Country Code | Currency | Payment Method                                                                                                                                                                 |
| --------- | ------------ | -------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ |
| Brazil    | BR           | BRL      | [PIX](#brazil-pix)                                                                                                                                                             |
| Indonesia | ID           | IDR      | [DANA](#indonesia-dana-gopay-shopeepay), [GOPAY](#indonesia-dana-gopay-shopeepay), [SHOPEEPAY](#indonesia-dana-gopay-shopeepay), [ID-BANKTRANSFER](#indonesia-id-banktransfer) |
| Vietnam   | VN           | VND      | [VN-BANKTRANSFER](#vietnam-vn-banktransfer)                                                                                                                                    |
| Egypt     | EG           | EGP      | [EG-BANKTRANSFER](#egypt-eg-banktransfer), [EG-WALLET](#egypt-eg-wallet)                                                                                                       |

## Brazil PIX

| Parameter  | Type   | Required | Description                                                                                        | Example           |
| ---------- | ------ | -------- | -------------------------------------------------------------------------------------------------- | ----------------- |
| pixKeyType | string | Yes      | Pix key type. Enum: `cpf`, `email`, `phone`, `evp`. Default: `cpf`                                 | cpf               |
| pixKey     | string | No       | Pix key                                                                                            | 11013601513       |
| documentNo | string | Yes      | CPF document number of the target account holder, 11 digits                                        | 11013601513       |
| name       | string | Yes      | Full name of the target account holder. If `lastName` is set, only the first name is required here | Joice Mary Santos |
| lastName   | string | No       | Last name of the target account holder                                                             | Santos            |
| email      | string | No       | Email of the target account holder                                                                 | -                 |
| phone      | string | No       | Phone number of the target account holder                                                          | -                 |

```json theme={null}
{
  "channelExtra": {
    "pixKeyType": "cpf",
    "pixKey": "11013601513",
    "documentNo": "11013601513",
    "name": "Joice Mary Santos"
  }
}
```

## Indonesia DANA GOPAY SHOPEEPAY

The DANA, GOPAY, and SHOPEEPAY e-wallets share the same parameter structure.

| Parameter | Type   | Required | Description                    | Example      |
| --------- | ------ | -------- | ------------------------------ | ------------ |
| phone     | string | Yes      | Phone number, 12-14 characters | 081617025661 |

```json theme={null}
{
  "channelExtra": {
    "phone": "081617025661"
  }
}
```

## Indonesia ID-BANKTRANSFER

| Parameter | Type   | Required | Description                          | Example      |
| --------- | ------ | -------- | ------------------------------------ | ------------ |
| bankCode  | string | No       | Bank code                            | -            |
| accountNo | string | Yes      | Bank account number, 6-20 characters | 081617025661 |

```json theme={null}
{
  "channelExtra": {
    "accountNo": "081617025661"
  }
}
```

## Vietnam VN-BANKTRANSFER

| Parameter   | Type   | Required | Description         | Example         |
| ----------- | ------ | -------- | ------------------- | --------------- |
| accountNo   | string | Yes      | Bank account number | 6220229870211   |
| accountName | string | Yes      | Account name        | Trầm Thái Dương |

For supported Vietnamese banks and limits, see [Vietnam](/developers/global-payment/payment-network/asia-pacific/vietnam).

```json theme={null}
{
  "channelExtra": {
    "accountNo": "6220229870211",
    "accountName": "Trầm Thái Dương"
  }
}
```

## Egypt EG-BANKTRANSFER

| Parameter   | Type   | Required | Description         | Example       |
| ----------- | ------ | -------- | ------------------- | ------------- |
| accountNo   | string | Yes      | Bank account number | 6220229870211 |
| accountName | string | Yes      | Account name        | Test          |

```json theme={null}
{
  "channelExtra": {
    "accountNo": "6220229870211",
    "accountName": "Test"
  }
}
```

## Egypt EG-WALLET

| Parameter   | Type   | Required | Description  | Example     |
| ----------- | ------ | -------- | ------------ | ----------- |
| phone       | string | Yes      | Phone number | 01111111111 |
| accountName | string | Yes      | Account name | Exia        |

```json theme={null}
{
  "channelExtra": {
    "phone": "01111111111",
    "accountName": "Exia"
  }
}
```

<Note>
  For payee phone number formats by country, see [Phone Number Reference](/appendix/global-payment/phone-number-reference).
</Note>
