Update order¶
Order API v1
PUT
*base*/orders
Authentication:API key
Update information on the order.
Parameters¶
int
required
|
Order ID to update. |
string
optional
|
Append some text to internal comment field. |
boolean
optional
|
Response in xml format instead of json. |
Request example¶
1 2 3 4 5 6 7 | PUT <base>/orders HTTP/1.1
Content-type: application/json
{
"order": 83651,
"internalComment": "test"
}
|
Response¶
200
Content-type: application/json
string
required
|
ok if success, else no . |
int
|
Order ID that was updated. |
string
optional
|
If status returns no , this value should send back a message why it failed. |
Response example¶
1 2 3 4 5 6 7 | HTTP/1.1 200 OK
Content-type: application/json
{
"status": "ok",
"order": 83651
}
|
Error example¶
1 2 3 4 5 | {
"status": "no",
"msg": "order in wrong market",
"order": 83651
}
|