POST api/Delivery/SaveDeliveryMX
新增发货明细和编辑发货明细
Request Information
URI Parameters
None.
Body Parameters
SaveDeliveryRequestName | Description | Type | Additional information |
---|---|---|---|
Id |
主键 |
integer |
None. |
title |
标题 |
string |
None. |
content |
内容 |
string |
None. |
user_id |
当前登录者Id |
string |
None. |
token |
token |
string |
None. |
Request Formats
application/json, text/json
Sample:
{ "Id": 1, "title": "sample string 1", "content": "sample string 2", "user_id": "sample string 3", "token": "sample string 4" }
application/xml, text/xml
Sample:
<SaveDeliveryRequest xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/BBS.Model"> <token>sample string 4</token> <user_id>sample string 3</user_id> <Id>1</Id> <content>sample string 2</content> <title>sample string 1</title> </SaveDeliveryRequest>
application/x-www-form-urlencoded
Sample:
Response Information
Resource Description
新增发货明细和编辑发货明细
HttpResponseMessageName | Description | Type | Additional information |
---|---|---|---|
Version | Version |
None. |
|
Content | HttpContent |
None. |
|
StatusCode | HttpStatusCode |
None. |
|
ReasonPhrase | string |
None. |
|
Headers | Collection of Object |
None. |
|
RequestMessage | HttpRequestMessage |
None. |
|
IsSuccessStatusCode | boolean |
None. |