Edit buy order
Rate limit of create/edit actions for orders is 60 requests per 60 seconds
Prices are integers. 1000 = $1.00 USD.
Parameters
| Name | Location | Type | Description |
|---|---|---|---|
apirequired | query | string | Your WAXPEER API |
Request body
| Name | Location | Type | Description |
|---|---|---|---|
idoptional | body | number | Buy order id |
priceoptional | body | number | New price (1000 = 1$) |
amountoptional | body | number | New or old amount of items |
{
"id": 2007,
"price": 2007,
"amount": 5
}Responses
200 successful operation
{
"success": false,
"msg": "string",
"id": 2007,
"amount": 6,
"price": 2008
}429 Too many requests
{
"success": false,
"msg": "string",
"msBeforeNext": 0
}