CancelOrder
Endpoint URL
Local Host : POST http://127.0.0.1:5000/api/v1/cancelorder
Ngrok Domain : POST https://<your-ngrok-domain>.ngrok-free.app/api/v1/cancelorder
Custom Domain: POST https://<your-custom-domain>/api/v1/cancelorderSample API Request
{
"apikey": "<your_app_apikey>",
"orderid": "250408001002736",
"strategy": "Python"
}Sample cURL Request
curl -X POST http://127.0.0.1:5000/api/v1/cancelorder \
-H 'Content-Type: application/json' \
-d '{
"apikey": "<your_app_apikey>",
"orderid": "250408001002736",
"strategy": "Python"
}'Sample API Response
Request Body
Parameter
Description
Mandatory/Optional
Default Value
Response Fields
Field
Type
Description
Notes
Error Scenarios
Error
Cause
Related Endpoints
Last updated