GET ORDERCART DETAILS API
This API retrieves the details of a specific order cart by its ID.
Endpoint: GET /transactional/v1/ordercart/{ordercartId}
| 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}} |
🔗 Path Parameters
| Parameter | Type | Required | Description | Example |
|---|
| ordercartId | string | Yes | Unique identifier of the order cart | "2657 1D" |
🟢 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 details fetched successfully" |
| data | object | Order cart detail payload | Refer to Data Object Fields |
📦 Data Object Fields
| Field | Type | Description | Example |
|---|
| ordercartId | string | Unique identifier of the order cart | "2657 1D" |
| ordercartName | string | Name of the order cart | "BasketTest5" |
| orders | array | Array of order entries in this cart | Refer below |
📘 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" |
| MarketLot | integer | Market lot size | 1 |
| PriceTick | number | Minimum price movement | 10 |
| SecurityDesc | string | Full security description | "NSE EQUITIES ACC EQ 22" |
| DecimalLocator | integer | Decimal precision indicator | 100 |
| ISIN | string | ISIN code | "INE012A01025" |
| OrderType | string | Order type | "RL" |
| TransactionType | string | Order side | "BUY" |
| Quantity | integer | Number of units | 3 |
| Price | string | Price per unit | "567" |
| ProductType | string | Product type | "MTF" |
| TriggerPrice | string | Trigger price | "0" |
| validity | string | Order validity | "DAY" |
| scripDet | object | Token and segment info | Refer above |
| RecoType | string | Recommendation type (if applicable) | "Initiate Long Call" |
| RecoSubType | string | Recommendation sub-type | "Enter Long" |
| RecoSubTypeValue | string | Recommendation sub-type value | "101" |