post https://api-sandboxdash.norcapsecurities.com/tapiv3/index.php/v3/updateTradeTransactionType
Update trade transaction type
Request Parameters
| Parameter | Required | Type | Description |
|---|---|---|---|
| clientID | yes | string | TransactAPI Client ID |
| developerAPIKey | yes | string | TransactAPI Developer Key |
| tradeId | yes | string | Trade ID generated by the TAPI |
| transactionType | yes | string | Transaction type: ACH / WIRE / CHECK / CREDITCARD / TBD / IRA |
Sample Request
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=TBDResponse Parameters
| Parameter | Type | Description |
|---|---|---|
| statusCode | string | API Status Code |
| statusDesc | string | API Status Description |
| tradeDetails | string | Array of trade details (partyId, offeringId, orderStatus) |
Sample Response
{
"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"
}
]
}
