Cancel an order
curl --request POST \
--url https://api.agg.market/execution/orders/{orderId}/cancel \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--header 'x-app-id: <api-key>' \
--data '{}'{
"quoteId": "<string>",
"orderIds": [
"<string>"
]
}Execution
Cancel an order
Cancels a queued managed order or an active open limit order. Terminal orders cannot be cancelled.
POST
/
execution
/
orders
/
{orderId}
/
cancel
Cancel an order
curl --request POST \
--url https://api.agg.market/execution/orders/{orderId}/cancel \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--header 'x-app-id: <api-key>' \
--data '{}'{
"quoteId": "<string>",
"orderIds": [
"<string>"
]
}Authorizations
Your application ID. Required for all app-tier and user-tier routes.
JWT access token returned by POST /auth/verify. Required for user-tier routes.
Path Parameters
Body
application/json
The body is of type object.
⌘I