# SendPaymentLinkRequest

**customerEmail**string

The customer will receive payment link on this email address.

**Example:<!-- -->&#x20;**`john.doe@example.com`

**customerPhone**string

Phone number in E.164 format. The customer will receive payment link on this phone number.

**Example:<!-- -->&#x20;**`+34500000000`

**channel**Payment-MessageChannel

The channel used to send the payment message.

| Enum Value | Description                       |
| ---------- | --------------------------------- |
| EMAIL      | Send message via email            |
| WHATSAPP   | Send message via WhatsApp         |
| SMS        | Send message via SMS text message |

**Possible values:** \[`EMAIL`, `WHATSAPP`, `SMS`]

**Example:<!-- -->&#x20;**`EMAIL`

**language**Payment-MessageLanguage

The language of message sent to the customer. If not provided the default customer language is used if available.

| Enum Value | Description |
| ---------- | ----------- |
| en         | English     |
| es         | Spanish     |
| ca         | Catalan     |
| pt         | Portuguese  |
| de         | German      |
| it         | Italian     |
| fr         | French      |

**Possible values:** \[`en`, `es`, `ca`, `pt`, `de`, `it`, `fr`]

**Example:<!-- -->&#x20;**`en`

SendPaymentLinkRequest

```
{

  "customerEmail": "john.doe@example.com",

  "customerPhone": "+34500000000",

  "channel": "EMAIL",

  "language": "en"

}
```
