Skip to main content
Version: 1.1.0

Order Search

GET 

/v1.1/orders/search

This is used to search the order history. This can also be used to get a list of all the orders for a given period that match the given criteria.

If a symbol contains a backslash ( \ ) character, it needs to be replaced by %5C. (Ex.BOND\23H18\87.0 is replaced by BOND%5C23H18%5C87.0 ).

If a symbol contains a backtick (`) character, it needs to be replaced by %60. (Ex.510`TB is replaced by 510%60TB ).

Request

Query Parameters

    accountNumber stringrequired
    exchange string
    symbol string
    orderId string
    orderStatus string

    Find list of status here

    orderSide string
    sDate stringrequired
    eDate stringrequired
    pageNo number

    Default value: 1

    pageWidth number

    Default value: 100

Responses

OK

Schema
    status stringrequired
    reason string
    rejectCode integer

    Find error code here

    isNextPageAvailable boolean
    pageWidth integer

    Default value: 100

    totalNoOfRecords integer
    list object[]
  • Array [
  • orderNumber string
    orderId string
    originalOrderId string
    orderReferenceId string
    orderQty number
    orderType string
    orderSide string
    orderStatus string
    orderValue number

    The total value of an order, calculated as price * quantity. It updates dynamically based on the quantity executed, reflecting the current executed value of the order.

    commission number
    accountNumber string
    currency string
    price number
    symbol string
    text string

    appears only in rejected orders

    tif integer
    transactionTime string

    Possible values: Value must match regular expression yyyy/MM/dd-HH:mm:ss

    orderRejectReason string
    rejectReason stringdeprecated
    exchange string
    createdDate string

    Possible values: Value must match regular expression yyyy/MM/dd-HH:mm:ss

    averagePrice number
    marketCode string
    settleCurrency string
    cumulativeQty number
    cumulativeOrderValue number
    cumulativeOrderNetValue number
    cumulativeCommission number
    cumulativeOrderNetSettle number
    cumulativeVatAmount number
    cumulativeStampDutyAmount number
    lastUpdatedTime string

    Possible values: Value must match regular expression yyyy/MM/dd-HH:mm:ss

    clientOrderId stringdeprecated
    status stringdeprecated
    amount number

    This is only for fixed income orders

  • ]
  • pageNo integer

    Default value: 1

Loading...
Is this page helpful for you?