curl --location --request POST 'https://api.jokoor.com/v1/payouts/recipients/send-bulk' \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data-raw '{
"payouts": [
{
"recipient_id": "rec_abc123",
"amount": "500.00",
"description": "Monthly payment"
}
]
}'{
"data": {
"id": "batch_abc123",
"organization_id": "org_xyz789",
"total_amount": "15000.00",
"total_count": 30,
"successful_count": 28,
"failed_count": 2,
"pending_count": 0,
"status": "pending",
"payouts": [
{
"id": "rp_def456",
"recipient_id": "rec_abc123",
"amount": "500.00",
"status": "pending",
"error_message": "Insufficient balance"
}
],
"created_at": "2019-08-24T14:15:22.123Z",
"completed_at": "2019-08-24T14:15:22.123Z"
}
}