# 8.3.1 Multipayout It is possible to charge an existing card profile with the multipayout option. To do this, add the data described in section 5.4 Multipayouts to the request body used for charging the card profile. #### Example payload ```json { "serviceId": "63f574ed-d4ad-407e-9981-39ed7584a7b7", "paymentProfileId": "39ac1087-e632-41ff-acb8-8d661068a9d5", "amount": 303, "currency": "PLN", "orderId": "test", "data": { "multipayout": [ { "label": "1", "iban": "PL01100010100000001010010000", "amount": 102 }, { "label": "2", "iban": "PL00101000000000001000100000", "amount": 201 } ] } } ```