# 5.4. Multipayouts This option is available when the multipayout feature is enabled. The payment link is created according to the description in point 5, together with an additional `multipayout` parameter: | Parameter | Type | Required | Description | |-----------|-------------------------|----------|-------------| | `iban` | string(28) | ✔️ | Bank account number | | `amount` | integer(1-999999999) | ✔️ | Transaction amount in the smallest currency unit, e.g. grosz. | | `label` | string(35) | ✔️ | Recipient name,
*Allowed characters*: A-Za-z0-9-"',. as well as the space character (0x20) and characters in the UNICODE range 00C0 - 02C0 (including Polish diacritical characters), | | `title` | string(105) | - | Transfer title,
*Allowed characters*: A-Za-z0-9#&_-"',.\/ as well as the space character (0x20) and characters in the UNICODE range 00C0 - 02C0 (including Polish diacritical characters), optional parameter. Its presence causes the given transaction to be separated on the recipient's account.
**Important:** Providing this parameter for one element requires it to be provided for the others. | #### Structure example: ```json { "multipayout": [ { "iban": "PL55105000026800208114085773", "amount": 100, "label": "Company name 0" }, { "iban": "PL55105000026800208114085773", "amount": 200, "label": "Company name 1" } ] } ```