Introduction

POSThttps://cards-live.78financials.com/virtual_card/cards/get_card_details

Arguments

Authorization header Values

POST

          
{ 
  "authorization": Payaza UFo3OC1QS0xJVkUtRjMwODcwNUMtRkY2NC00MEJCLTg1OUUtM0ZCQUI4MTJBNzdC
   
} 
     
        

View Details Of A Virtual Card

POST

          
import http.client
import json

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

RESPONSE

{
  "status": "successful",
  "message": "Operation Completed Successfully.",
  "card_reference": "virtual_card_02",
  "card_number": "48655501463039680",
  "expiry_month": "8",
  "expiry_year": "2026",
  "cvv": "100",
  "card_name": "John Doe",
  "card_brand": "Visa",
  "card_billing_address": {
    "billing_address1": "256 Chapman Road STE 105-4",
    "billing_city": "Newark",
    "billing_country": "US",
    "billing_zip_code": "19702",
    "country_code": "US",
    "state": "Delaware",
    "state_code": "DE"
  },
  "card_currency": "USD",
  "card_balance": 0
} 
      
Was this article helpful?
Contact support

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