getCCFundMoveHistory

This method is used to retrieve the information for all credit card transactions that have been created for a specific account.

Request Parameters

ParameterRequiredTypeDescription
clientIDyesstringTransactAPI Client ID
developerAPIKeyyesstringTransactAPI Developer Key
accountIdyesstringAccount 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

ParameterTypeDescription
statusCodestringAPI Status Code
statusDescstringAPI Status Description
ccfundDetailsstringArray 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"
        }

Test it Yourself!

Language
Click Try It! to start a request and see the response here!