# Modify order notes
# Interface call request specification
Http request method: POST
https://api.weixin.qq.com/product/order/change_merchant_notes?access_token=xxxxxxxxx
# Request Parameter Sample
{
"order_id": 123456,
"merchant_notes" : "abc"
}
# Return Package Example
{
"errcode": 0,
"errmsg":"ok",
}
# Request Parameter Dxplaination
parameter | type | Is it necessary to fill out | Introductions |
---|---|---|---|
order_id | number | yes | Order id |
merchant_notes | string | yes | Remarks |
# Return parameter specification
parameter | type | Introductions |
---|---|---|
Errcode | number | Error code |
errmsg | string | Error message |
# Return code
Return code | Type of error |
---|---|
-1 | System exception |
-2 | Token is too long |
9401020 | Wrong parameter |
9401021 | Call the api without permission |