post deprecatedhttps://api-sandboxdash.norcapsecurities.com/tapiv3/index.php/v3/getCreditCard
This method is used to retrieve the credit card information that was previously saved to a specific account.
This is a legacy API method. If you are integrating with our API, please refer to getLinkedCreditCard (and linkCreditCard).
Request Parameters
Parameter | Required | Type | Description |
---|---|---|---|
clientID | yes | string | TransactAPI Client ID |
developerAPIKey | yes | string | TransactAPI Developer Key |
accountId | yes | string | Account ID that is generated by the API once an account is created (createAccount) |
Sample Request
curl -k -X POST https://api-sandboxdash.norcapsecurities.com/tapiv3/index.php/v3/getCreditCard
-d clientID=someclientid
-d developerAPIKey=somedeveloperkey
-d accountId=A77654
Response Parameters
Parameter | Type | Description |
---|---|---|
statusCode | string | API Status Code |
statusDesc | string | API Status Description |
creditcardDetails | string | Array of account credit card includes all information of the matched account |
Sample Response
{
"statusCode": "101",
"statusDesc": "Ok",
"creditcardDetails": {
"accountId": "A77654",
"creditCardName": "john",
"creditCardNumber": "1234567890123",
"expirationDate": "2829",
"cvvNumber": "1122,
}
}