Close All Order
This API allows you to delete multiple orders on the platform.
Prerequisites
Before using this endpoint, ensure you have read the How to Generate a Signature guide. This guide explains the steps required to create the signature
parameter needed to authenticate your request.
Key Notes
The request body must include the required parameters, detailed below.
You must provide a valid
timestamp
andsignature
in the request body.The
x-api-key
must be included in the request headers for authentication.
Delete All Orders
DELETE
https://nami.exchange/api/v4/spot/all_order
Headers
Content-Type
application/json
x-api-key
<Your secret key>
Body
orders
array
An array of objects representing orders to be deleted. Each object contains the following:
See example below
orders[].displayingId
number
The displaying ID of the order.
Any valid order ID
orders[].symbol
string
The symbol of the order.
Any valid trading symbol
allowNotification
boolean
Whether to send notifications upon deletion.
true
| false
signature
string
The signature is the secret key encoded as ASCII data. It is required for authenticating.
timestamp
string
The timestamp is the time the request was sent. Format must be in milliseconds.
Millisecond only
Example Request Body
Response
Last updated