API Status Support Dashboard

Transaction Reports

Generate and export transaction reports.


Generate Report

curl "https://dev.auxcore.net/api/v1/reports/transactions?startDate=2026-01-01&endDate=2026-01-31" \
  -H "Authorization: Bearer YOUR_TOKEN" \
  -H "X-Tenant-ID: your-tenant-id"

Response:

{
  "success": true,
  "data": {
    "totalTransactions": 1000,
    "totalAmount": 50000.00,
    "approvedCount": 950,
    "declinedCount": 50,
    "refundedAmount": 2500.00
  }
}

Export to CSV

curl "https://dev.auxcore.net/api/v1/reports/transactions/export?format=csv&startDate=2026-01-01" \
  -o transactions.csv

Email Report

curl -X POST https://dev.auxcore.net/api/v1/reports/transactions/email \
  -d '{
    "email": "accounting@example.com",
    "startDate": "2026-01-01",
    "endDate": "2026-01-31"
  }'

Need help? Contact support@auxvault.com