POST api/admin/order/post

【管理员】【订单管理】标记发货或完成

Request Information

URI Parameters

None.

Body Parameters

status => 0:待支付 10:支付成功,待配送 20:配送中 50:完成

DeliveryRequst
NameDescriptionTypeAdditional information
id

订单ID

string

None.

post_code

配送单号

string

None.

post_name

配送名称

string

None.

Request Formats

application/json, text/json

Sample:
{
  "id": "sample string 1",
  "post_code": "sample string 2",
  "post_name": "sample string 3"
}

Response Information

Resource Description

【管理员】【订单管理】标记发货或完成

MyResponse
NameDescriptionTypeAdditional information
code

integer

None.

msg

string

None.

data

Object

None.

Response Formats

application/json, text/json

Sample:
{
  "code": 1,
  "msg": "sample string 2",
  "data": {}
}