# 獲取訂單狀態接口測試
#### 接口URL
`https://wx.jingjiang.red/addons/make_speed/core/public/index.php/apis/v2/get_order_status`
#### 請求方式
`POST`
#### 請求 Content-Type
`multipart/form-data`
#### 請求Body參數
| 參數 | 示例值 | 必填 | 參數描述 |
| --- | --- | --- | --- |
| token | de146aa4-a84c-42d8-9f91-318ab44b6571 | 必填 | \- |
| order\_num | A20200319632848446 | 必填 | \- |
#### 響應參數
| 參數 | 參數描述 |
| --- | --- |
| status | 狀態 |
| remark | loading = 待付款', cancel='訂單已取消', payed='待接單', accepted='待取件', geted='待收件',gotoed= '待評價', completed='訂單已完成'); |
#### 成功響應示例
~~~
{
"error_code": 0,
"msg": "success",
"data": {
"status": "loading",
"remark": "待付款"
}
}
~~~
#### 失敗響應示例
~~~
{
"msg": "訂單不存在!",
"error_code": 10000,
"request_url": "\/addons\/make_speed\/core\/public\/index.php\/apis\/v2\/get_order_status"
~~~