post https://api-sandboxdash.norcapsecurities.com/tapiv3/index.php/v3/requestForVoidCCTransaction
This method is used to update the pending Credit Card transaction to void. This can only be used on a transaction that is in a "Pending" status. "Pending" transactions are submitted for processing at 6:00 PM Eastern Time every business day.
Request Parameters
Parameter | Required | Type | Description |
---|---|---|---|
clientID | yes | string | TransactAPI Client ID |
developerAPIKey | yes | string | TransactAPI Developer Key |
RefNum | yes | string | Reference Number that is generated by the API once a credit card transaction is initiated (ccFundMove ) |
Sample Request
curl -k -X POST https://api-sandboxdash.norcapsecurities.com/tapiv3/index.php/v3/requestForVoidCCTransaction
-d developerAPIKey=somedeveloperkey
-d clientID=someclientid
-d RefNum=313889266
Response Parameters
Parameter | Type | Description |
---|---|---|
statusCode | string | API Status Code |
statusDesc | string | API Status Description |
investorExternalAccountDetails | string | Status Updated Successfully |
Sample Response
{
"statusCode": "101",
"statusDesc": "Ok",
"investorExternalAccountDetails": "Status Updated Successfully"
}