You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The replaceOrder documentation in the README.md shows this signature:
replaceOrder(uuid) => Promise<Order>
However the PATCH /orders/{id} API function requires replacement parameters to be provide for the order being replaced. So I assume the signature should be:
replaceOrder(uuid, order) => Promise<Order>
where order has the same structure as in createOrder?
I tried passing an order parameter to the replaceOrder function that is replacing the training stop percent, which causes this error:
StatusCodeError: 403 - {"code":40310000,"message":"order parameters are not changed"}
Bug, yes?
The text was updated successfully, but these errors were encountered:
The replaceOrder documentation in the
README.md
shows this signature:However the
PATCH /orders/{id}
API function requires replacement parameters to be provide for the order being replaced. So I assume the signature should be:where order has the same structure as in createOrder?
I tried passing an order parameter to the
replaceOrder
function that is replacing the training stop percent, which causes this error:Bug, yes?
The text was updated successfully, but these errors were encountered: