updateCreditCard

This method is used to update the credit card information that is saved to a specific account (createExternalAccount).

Request Parameters

ParameterRequiredTypeDescription
clientIDyesstringTransactAPI Client ID
developerAPIKeyyesstringTransactAPI Developer Key
accountIdyesstringAccount ID that is generated by the API once an account is created (createAccount)
creditCardNameyesstringName on the Credit Card
creditCardNumberyesstringFull Credit Card Number
expirationDateyesstringCredit Card Expiration Date in MMYY format
cvvNumberyesstringCVV security code of the credit card
cardTypeyesstringCredit Card Type eg: VI, MC, DI
updatedIpAddressyesstringIP Address associated with the updateCreditCard method call

Sample Request

curl -k -X POST https://api-sandboxdash.norcapsecurities.com/tapiv3/index.php/v3/updateCreditCard
-d clientID=someclientid
-d developerAPIKey=somedeveloperkey
-d accountId=A25562
-d creditCardName=Bank Card
-d creditCardNumber=1234567896541256
-d expirationDate=1212
-d cvvNumber=123
-d cardType=VI
-d updatedIpAddress=111.111.111.111

Response Parameters

ParameterTypeDescription
statusCodestringAPI Status Code
statusDescstringAPI Status Description
creditcardDetailsstringSuccess message for update credit card

Sample Response

{
	"statusCode": "101",
	"statusDesc": "Ok",
	"creditcardDetails": "Credit Card details added sussfully added

Test it Yourself!

Language
Click Try It! to start a request and see the response here!