curl --request POST \
--url https://preview.kotanipay.com/api/v3/dashboard/bulk-payments/api/preview \
--header 'Content-Type: application/json' \
--data '
{
"batchName": "<string>",
"recipients": [
{
"recipientName": "<string>",
"recipientEmail": "<string>",
"recipientPhone": "<string>",
"amount": 123,
"currency": "KES",
"reference": "<string>"
}
],
"walletSelections": [
{
"currency": "KES",
"walletId": "<string>"
}
],
"batchDescription": "<string>",
"callbackUrl": "<string>",
"integratorId": "<string>"
}
'