cURL
curl --request POST \ --url https://api.usezentra.com/api/v1/cards/{card_id}/jit-fund \ --header 'Authorization: Bearer <token>'
POST /api/v1/cards//jit-fund - Trigger just-in-time funding
POST /api/v1/cards/{card_id}/jit-fund
amount_minor
currency
transaction_reference
idempotency_key
curl -X POST https://api.usezentra.com/api/v1/cards/card_123/jit-fund \ -H "Authorization: Bearer YOUR_SECRET_KEY" \ -H "Content-Type: application/json" \ -d '{ "amount_minor": 500000, "currency": "NGN", "transaction_reference": "jit_fund_card_123_001", "idempotency_key": "jit_fund_card_123_001" }'
Was this page helpful?