API For Updating Virtual Card (update cardholder address)
Description
Update virtual card (update cardholder address)
Request URL
/open/api/card/deposit
Request Method
POST
Request Parameter
Parameter
Mandatory
Type
Description
cardId
Y
string
Virtual Card ID
+cardHolder
Y
object
â””street
Y
string
Street
â””city
Y
string
City
string
Y
string
State
â””zipCode
Y
string
Zipcode
Request Example
{
"cardHolder": {
"city": "Vienna",
"state": "GA",
"street": "1010 Pine St LOT 12-E",
"zipCode": "31092"
},
"cardId": "c_xxxxxxxxxx"
}
Response Parameter
Parameter
Type
Description
model
boolean
Is the operation successful
Response Example
{
"success": true,
"error":false,
"msg": "success",
"code": 0,
"model": true,
"traceId": 1646651934238
}
Last updated