post
https://tapi-sandboxdash.norcapsecurities.com/getLinkedCreditCard
Use this API to get the credit card information through TransactAPI's integration with Stripe.
UPDATE: Friday November 21, 2025
This endpoint can now be called two ways. The preferred URL is:
https://api-sandboxdash.norcapsecurities.com/tapiv3/index.php/v3/getLinkedCreditCard
For existing integrations:
https://tapi-sandboxdash.norcapsecurities.com/getLinkedCreditCard
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://api-sandboxdash.norcapsecurities.com/tapiv3/index.php/v3/getLinkedCreditCard
-d clientID=someclientid
-d developerAPIKey=somedeveloperkey
-d accountId=A49501Response 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.
