post https://api-sandboxdash.norcapsecurities.com/tapiv3/index.php/v3/getCCFundMoveHistory
This method is used to retrieve the information for all credit card transactions that have been created for a specific account.
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/getCCFundMoveHistory
-d clientID=someclientid
-d developerAPIKey=somedeveloperkey
-d accountId=A77952
Response Parameters
Parameter | Type | Description |
---|---|---|
statusCode | string | API Status Code |
statusDesc | string | API Status Description |
ccfundDetails | string | Array of cc fund move details for an account that includes all information for the fund moves created for the matched account |
Sample Response
{
"statusCode": "101",
"statusDesc": "Ok",
"accountDetails": [
{
"accountId": "A49501",
"tradeId": "880696248",
"offeringId": "81272",
"totalAmount": "1000.000000",
"RefNum": null,
"transactionstatus": "Approved",
"fundStatus": "Verification Pending",
"errors": null,
"createdDate": "2018-06-16 05:49:10"
},
{
"accountId": "A49501",
"tradeId": "623303227",
"offeringId": "44238",
"totalAmount": "5.000000",
"RefNum": null,
"transactionstatus": "Pending",
"fundStatus": "Pending",
"errors": null,
"createdDate": "2018-07-06 11:35:45"
},
{
"accountId": "A49501",
"tradeId": "385938050",
"offeringId": "44238",
"totalAmount": "1.000000",
"RefNum": null,
"transactionstatus": "Pending",
"fundStatus": "Pending",
"errors": null,
"createdDate": "2018-07-06 11:59:16"
}