API Status Support Dashboard

Gateway Routing

Configure intelligent payment gateway routing.


Overview

Gateway routing automatically directs transactions to the optimal payment gateway based on:


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