GET ALL ORDERCARTS API
This API retrieves all order carts belonging to the authenticated user.
Endpoint: GET /transactional/v1/ordercart
| Header | Type | Description | Example |
|---|
| Content-Type | string | Specifies the media type of the request | application/json |
| Authorization | string | Bearer token for authenticated requests | {{access_token}} |
🟢 Success Response - 200 OK
Content-Type: application/json
| Field | Type | Description | Example |
|---|
| status | string | Status of API call | "success" |
| code | string | Response code to user request | "s-101" |
| message | string | Success message | "Ordercart list fetched successfully" |
| data | array | Array of all order cart objects | Refer to Data Object Fields |
📦 Data Object Fields
| Field | Type | Description | Example |
|---|
| ordercartId | string | Unique identifier of the order cart | "2662 1D" |
| ordercartName | string | Name of the order cart | "CART01" |
| modifiedAt | string | Last modified timestamp (ISO 8601) | "2026-05-22T09:26:58.013Z" |
| orders | array | Array of order entries in this cart | Refer to Orders Array |
📘 Orders Array — scripDetail Object Fields (in Response)
| Field | Type | Description | Example |
|---|
| symbol | string | Instrument trading symbol | "ACC" |
| _Series | string | Series of the instrument | "EQ" |
| _InstrumentName | string | Instrument category | "EQUITIES" |
| _ExchangeName | string | Exchange name | "NSE" |
| _ExpiryDate | string | Expiry date | "NA" |
| _OptionType | string | Option type | "NA" |
| _StrikePrice | string | Strike price | "NaN" |
| MarketLot | integer | Market lot size | 1 |
| PriceTick | number | Minimum price movement | 10 |
| SecurityDesc | string | Full security description | "ACC LIMITED" |
| DecimalLocator | integer | Decimal precision indicator | 100 |
| ISIN | string | ISIN code | "INE012A01025" |
| TransactionType | string | Order side | "BUY" |
| OrderType | string | Order type | "RL-MKT" |
| Quantity | integer | Number of units | 1 |
| Price | string | Price per unit | "0.00" |
| ProductType | string | Product type | "DELIVERY" |
| TriggerPrice | number | Trigger price | 0 |
| sSurvMeasureDescription | string | Surveillance measure description | null |
| is_amo | boolean | AMO flag | false |
| disclosed_quantity | integer | Disclosed quantity | 0 |
| validity | string | Order validity | "DAY" |
| scripDet | object | Token and segment info | Refer above |
| maturityDate | integer | Maturity date (epoch) | 0 |
| expiryInMilliSec | integer | Expiry in milliseconds | 0 |