Gateway Routing
Configure intelligent payment gateway routing.
Overview
Gateway routing automatically directs transactions to the optimal payment gateway based on:
- Transaction amount
- Card type
- Geographic location
- Gateway health
- Cost optimization
Get Routing Config
curl https://dev.auxcore.net/api/v1/merchants/merchant_123/gateway-routing
Configure Routing Rules
curl -X PUT https://dev.auxcore.net/api/v1/merchants/merchant_123/gateway-routing \
-d '{
"rules": [
{"condition": "amount > 1000", "gateway": "gateway_primary"},
{"condition": "card_type == amex", "gateway": "gateway_amex"},
{"default": "gateway_primary"}
]
}'
Need help? Contact support@auxvault.com