Parameter | Required | Type | Description |
---|---|---|---|
clientID | yes | string | Transact API Client ID |
developerAPIKey | yes | string | Transact API Developer Key |
tradeId | yes | string | Trade ID generated by the TAPI |
transactionType | yes | string | Transaction Type as ACH / WIRE / CHECK / TBD/ CREDITCARD |
curl -k -X POST https://api-sandboxdash.norcapsecurities.com/tapiv3/index.php/v3/updateTradeTransactionType -d clientID=someclientid -d developerAPIKey=somedeveloperkey -d tradeId=916169323 -d transactionType=TBD
Parameter | Type | Description |
---|---|---|
statusCode | string | API Status Code |
statusDesc | string | API Status Description |
tradeDetails | string | Array of trade details ( partyId, offeringId, orderStatus ) |
{ "statusCode": "101", "statusDesc": "Ok", "TradeDetails": [ { "orderId": "916169323", "id": "787999", "transactionType": "TBD", "developerAPIKey": "U4Msub8Kn7tkjUJ3Dv4F7kGOKyC8NAdRIjC", "offeringId": "81272", "accountId": "A49501", "partyId": "P28759", "party_type": "IndivACParty", "totalAmount": "1000.000000", "totalShares": "10.000000", "orderStatus": "CREATED" } ] }