Introduction

POST https://cards-live.78financials.com/virtual_card/cards/fund_virtual_card

Arguments

Authorization header Values

POST

          
{ 
  "authorization": Payaza UFo3OC1QS0xJVkUtRjMwODcwNUMtRkY2NC00MEJCLTg1OUUtM0ZCQUI4MTJBNzdC
   
} 
     
        

Fund Virtual Card

POST

          
import http.client
import json

conn = http.client.HTTPSConnection("")
payload = json.dumps({
  "card_reference": "DOVE007",
  "fund_amount": 87,
  "currency": "USD",
  "transaction_reference": "MDFGC85058204354"
})
headers = {
  'Content-Type': 'application/json'
}
conn.request("POST", "/", payload, headers)
res = conn.getresponse()
data = res.read()
print(data.decode("utf-8"))
   
        

RESPONSE

{
  "status": "success",
  "message": "Virtual Card Funded Successfully.",
  "card_reference": "DOVE007",
  "transaction_reference": "MDFGC85058204354"
} 
      
Was this article helpful?
Contact support

Need help or want to ask questions, try connecting with our customer experience team