getAccountTradeHistory

This method will return all the trade information for all trades created for particular Account(createAccount).

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/getAccountTradeHistory
-d clientID=someclientid
-d developerAPIKey=somedeveloperkey
-d accountId=A11501

Response Parameters

ParameterTypeDescription
statusCodestringAPI Status Code
statusDescstringAPI Status Description
accountTradeDetailsstringArray of account trades includes all trade information of the matched account

Sample Response

{
"statusCode": "101",
"statusDesc": "Ok",
"accountDetails": [
        {
        "in_id": "787313",
        "offeringId": "44353",
        "orderId": "437616902",
        "partyId": "P56836",
        "accountId": "A11501",
        "totalAmount": "3000.000000",
        "esignStatus": "NOTSIGNED",
        "clientId": "GKrQl4m9FZ7rf3H",
        "trade_developerAPIKey": "U4Msub8Kn7tkjUJ3Dv4F7kGOKyC8NAdRIjC",
        "accountName": "John Smith",
        "accreditedStatus": "Pending",
        "kycStatus": "Manually Approved",
        "amlStatus": "Manually Approved",
        "issueName": "Test Offer For Tapi",
        "transactionType": "WIRE",
        "orderStatus": "CREATED",
        "trade_createdDate": "2017-02-03 06:34:23"
        },
    ]
}

Test it Yourself!

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