Skip to main content
Payouts are transactions you send from your balance to your customers’ bank accounts. For example, if you need to issue a refund to a payment method other than the original one your customer used, you can issue a payout instead. To issue a payout, you need to have enough funds on your payout balance. You can find your payout balance on the Payouts tab.

Create a payout

To make API requests, you’ll need your API key. For more details, see Authorisation.
To create a payout, use the /api/payouts API endpoint.
curl --request POST \
  --url https://api.stage.rocka.live/api/payouts \
  --header 'Content-Type: application/json' \
  --header 'x-api-key: <api-key>' \
  --data '
{
  "amount": 50,
  "currency": "EUR",
  "iban": "DE75512108001245126199",
  "beneficiaryName": "Mark Schmidt",
  "webhookUrl": "https://example.com/webhookUrl",
  "requestId": "payout1794"
}
'
Last modified on May 29, 2026