post https://tapi-sandboxdash.norcapsecurities.com/getLinkedCreditCard
Use this API to get the credit card information through TransactAPI's integration with Stripe Payment Processing.
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 |
Sample Request
curl -k -X POST https://tapi-sandboxdash.norcapsecurities.com/getLinkedCreditCard
-d clientID=someclientid
-d developerAPIKey=somedeveloperkey
-d accountId=A49501
Response Parameters
Parameter | Type | Description |
---|---|---|
statusCode | string | API Status Code |
statusDesc | string | API Status Description |
creditcardDetails | string | Linked Credit Card Information |
Sample Response
{
"statusCode": "101",
"statusDesc": "Ok",
"creditcardDetails": {
"accountId": "Axxxxxx",
"creditCardNumber": "9705",
"cardType": "Visa",
"createdDate": "2022-08-15 21:46:58"
}
}
Test it Yourself!
https://stripe.com/docs/testing See more information on stripes accepted test credit card numbers.