curl -L \
--request POST \
--url '/v1/transfers' \
--header 'Authorization: YOUR_API_KEY' \
--header 'Content-Type: application/json' \
--data '{
"pin": "text",
"batch_reference": "text",
"source_currency": "text",
"scheduled_date": "2025-04-03T10:34:10.642Z",
"break_on_validation_failure": true,
"batch_webhook_type": "batchOnly",
"batch_notification_interval": "tenPercent",
"title": "text",
"description": "text",
"transfers": [
{
"reference": "text",
"description": "text",
"beneficiary_id": "text",
"save_as_beneficiary": true,
"country": "text",
"currency": "text",
"amount": 1,
"wallet_account_tags": [
{
"account_tag": "text",
"amount": 1,
"description": "text",
"metadata": {
"ANY_ADDITIONAL_PROPERTY": "[Circular Reference]"
}
}
],
"account_number": "text",
"account_name": "text",
"bank_name": "text",
"bank_code": "text",
"sort_code": "text",
"swift_code": "text",
"email": "text",
"phone_number": "text",
"street_number": "text",
"street_name": "text",
"city": "text",
"postal_code": "text"
}
],
"gateway_transfers": [
{
"reference": "text",
"description": "text",
"beneficiary_id": "text",
"save_as_beneficiary": true,
"country": "text",
"currency": "text",
"amount": 1,
"wallet_account_tags": [
{
"account_tag": "text",
"amount": 1,
"description": "text",
"metadata": {
"ANY_ADDITIONAL_PROPERTY": "[Circular Reference]"
}
}
],
"merchant_id_or_code": "text",
"recipient_gateway_code": "text"
}
]
}'