getTradeStatus

This method is used to get the current trade details as an array with the current trade status

Request Parameters

ParameterRequiredTypeDescription
clientIDyesstringTransactAPI Client ID
developerAPIKeyyesstringTransactAPI Developer Key
tradeIdyesstringTrade ID generated by the API

Sample Request

curl -k -X POST https://api-sandboxdash.norcapsecurities.com/tapiv3/index.php/v3/getTradeStatus
-d clientID=someclientid
-d developerAPIKey=somedeveloperkey
-d tradeId=141103099

Response Parameters

ParameterTypeDescription
statusCodestringAPI Status Code
statusDescstringAPI Status Description
tradeDetailsstringReturns the current trade details as an array with the current trade status

Sample Response

{
	"statusCode": "101",
	"statusDesc": "Ok",
	"tradeDetails": [{
		"id": "787594",
		"developerAPIKey": "U4Msub8Kn7tkjUJ3Dv4F7kGOKyC8NAdRIjC",
		"offeringId": "52675",
		"accountId": "A11501",
		"partyId": "P56836",
		"party_type": "",
		"escrowId": null,
		"orderId": "141103099",
		"transactionType": "WIRE",
		"totalAmount": "12000.000000",
		"totalShares": "120.000000",
		"orderStatus": "FUNDED",
		"createdDate": "2017-05-17 06:25:38",
		"createdIpAddress": "",
		"errors": "",
		"documentKey": "",
		"esignStatus": "NOTSIGNED",
		"users": "",
		"archived_status": "0",
		"field1": "Account Field 1",
		"field2": "Account Field 2",
		"field3": "Account Field 3"
	}]
}

Test it Yourself!

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