API Status Support Dashboard

Batch Payouts

Generate and manage settlement batch payouts.


Generate Batch Payout

curl -X POST https://dev.auxcore.net/api/v1/settlement/batch-payouts/generate \
  -d '{
    "merchantId": "merchant_123",
    "startDate": "2026-01-01",
    "endDate": "2026-01-31"
  }'

Response:

{
  "success": true,
  "data": {
    "batchId": "batch_abc123",
    "transactionCount": 500,
    "totalAmount": 25000.00,
    "fees": 750.00,
    "netAmount": 24250.00,
    "status": "pending"
  }
}

List Batch Payouts

curl https://dev.auxcore.net/api/v1/settlement/batch-payouts

Export Batch

curl https://dev.auxcore.net/api/v1/settlement/batch-payouts/batch_abc123/export \
  -o batch-payout.csv

Need help? Contact support@auxvault.com