Skip to main content

Orders

Modify Order

When working at the market, one often needs to modify or delete the placed pending order.

While an order remains open or pending in the system, certain elements of it can be adjusted.

Method: POST

https://connect-go.thefirstock.tech/api/V5/modify-order

Request details

API Parameters
Key Value Type Mandatory
userIdNP2997StringYes
jKeyabc123StringYes
norenordno24121300015194IntegerYes
retDAYStringYes
prctypLMTStringYes
gui_order_idb924ef7d-9c7b-4599-834b-583023ce04b0StringNo
tsymStringYes
prc418IntegerNo
trgprc0IntegerYes
qty1IntegerNo
dscqty0IntegerNo
mkt_protection0.5FloatNo
ordersourceCAPI01StringYes
prdCStringYes
handlinstStringNo
channelMacOSStringNo
usr_agentBrowserAgent.ChromeStringNo
app_inst_id8195b6ff-1ba3-423a-9298-fb0e4e095bcdStringNo
ip_address1.1.1.1StringNo

Libraries and SDKs

Tabbed Interface
curl --location 'https://connect-go.thefirstock.tech/api/V5
/modify-order' \
--header 'Content-Type: application/json' \
--data '{
    "userId": "NP2997",
    "jKey": "1478b9b71707210d8851258599b23a6a73d31b19809ac5068560f38dad493d35",
    "norenordno": 24121300015194,
    "ret": "DAY",
    "prctyp": "LMT",
    "gui_order_id": "b924ef7d-9c7b-4599-834b-583023ce04b0",
    "tsym": "",
    "prc": 418,
    "trgprc": 0,
    "qty": 1,
    "dscqty": 0,
    "mkt_protection": 0.5,
    "ordersource": "CAPI01",
    "prd": "C",
    "handlinst": "",
    "channel": "MacOS",
    "usr_agent": "BrowserAgent.Chrome",
    "app_inst_id": "8195b6ff-1ba3-423a-9298-fb0e4e095bcd",
    "ip_address": "1.1.1.1"
}'


Success response details

API Parameters
Parameter Description Example
status
string
Indicates the success of the API request success
data.orderNumber
string
Unique identifier for the modified order 1234567890111
data.requestTime
string
Timestamp indicating when the response was
received
14:51:30 15-02-2023
{
    "status": "success",
    "message": "Order details",
    "data": {
        "ExternalRemarks": "(null)",
        "GuiOrdId": "b924ef7d-9c7b-4599-834b-583023ce04b0",
        "NorenOrdNum": 24121300015194,
        "RejReason": "Trying to modify an order number that does not exist.",
        "ReqStatus": "NOT_OK"
    }
}

Failure response details

API Error Parameters
Parameter Description Example
status
String
Indicates the result status of
the API operation
failed
code
String
HTTP status code associated with
the error
400
name
String
Specifies the type or category of
the error encountered
BAD REQUEST
error.field
String
Type of order pricing priceType
error.message
String
Detailed message describing the
error
priceType cannot be undefined
or NULL
{  
  "status": "failed",
  "code": "400",
  "name": "BAD_REQUEST", 
  "error": {   
    "field": "priceType",     
    "message": "priceType cannot be undefined or NULL"
  }
}