Payment Orchestration
One API call creates a payment intent. Define routing preferences inline — Reevit handles failover, retries, and provider selection automatically.
curl -X POST https://api.reevit.io/v1/payments/intents \
-H "X-Reevit-Key: pfk_live_xxxxx.secret" \
-H "Content-Type: application/json" \
-d '{
"amount": 100000,
"currency": "GHS",
"method": "mobile_money",
"country": "GH",
"phone": "+233201234567",
"policy": {
"prefer": ["paystack", "hubtel"],
"fallback": "next_available"
}
}'





