CANCEL ALL EQ SIP ORDER API
This API allows you to cancel multiple EQ SIP orders or cancel all SIP orders at once.
Depending on the flag value:
false → Cancels only the SIP orders provided in the request body
true → Cancels all SIP orders available in the system
🔍 Query Parameters
| Parameter | Type | Required | Description | Example |
|---|
| product_source | string | No | Source of the request | product_source=DEALERAPI |
| Header | Type | Description | Example |
|---|
| Content-Type | string | Specifies the media type of the request | application/json |
| Authorization | string | Access token for authenticated requests | {{access_token}} |
| x-api-key | string | API key used to authorize the request | {{x-api-key}} |
📑 Request Body Parameters
| Field | Type | Required | Description | Example |
|---|
| flag | boolean | Yes | Cancellation mode (true = cancel all, false = selective cancel) | true |
📦 Order Array (Required when flag = false)
| Field | Type | Required | Description | Example |
|---|
| sip_id | string | Yes | System-generated SIP ID | "SIP12345" |
| status | string | No | Status of SIP | "ACTIVE" |
| symbol | string | Yes | Scrip symbol | "INFY" |
| transaction_type | string | Yes | BUY or SELL | "BUY" |
| investment_type | string | Yes | Investment type | "QUANTITY" |
| invested_qty_or_val | integer | Yes | Quantity or value | 10 |
🟢 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 | "Orders cancelled successfully" |
| data | array | List of SIP cancellation results | Refer to Data Object Fields |
📦 Data Object Fields
| Field | Type | Description | Example |
|---|
| sip_id | string | Unique SIP order identifier | "SI2711230001" |
| symbol | string | Scrip symbol | "ACC" |
| status | string | Status of individual SIP cancellation | "success" |
| message | string | Result message for the SIP | "Order cancelled successfully" |