POST api/DeliveryPeriodConfig/UpdateSuppliersPlace

修改供应商发货地

Request Information

URI Parameters

None.

Body Parameters

UpdateSuppliersPlaceInput
NameDescriptionTypeAdditional information
suppliers_id

供应商id

integer

None.

provinces_id

integer

None.

provinces_name

string

None.

city_id

integer

None.

city_name

string

None.

remark

备注

string

None.

user_id

当前登录者Id

string

None.

token

token

string

None.

Request Formats

application/json, text/json

Sample:
{
  "suppliers_id": 1,
  "provinces_id": 1,
  "provinces_name": "sample string 1",
  "city_id": 1,
  "city_name": "sample string 2",
  "remark": "sample string 3",
  "user_id": "sample string 4",
  "token": "sample string 5"
}

application/xml, text/xml

Sample:
<UpdateSuppliersPlaceInput xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/BBS.Model.Dtos.DeliveryPeriodConfig">
  <token xmlns="http://schemas.datacontract.org/2004/07/BBS.Model">sample string 5</token>
  <user_id xmlns="http://schemas.datacontract.org/2004/07/BBS.Model">sample string 4</user_id>
  <city_id>1</city_id>
  <city_name>sample string 2</city_name>
  <provinces_id>1</provinces_id>
  <provinces_name>sample string 1</provinces_name>
  <remark>sample string 3</remark>
  <suppliers_id>1</suppliers_id>
</UpdateSuppliersPlaceInput>

application/x-www-form-urlencoded

Sample:

Failed to generate the sample for media type 'application/x-www-form-urlencoded'. Cannot use formatter 'JQueryMvcFormUrlEncodedFormatter' to write type 'UpdateSuppliersPlaceInput'.

Response Information

Resource Description

修改供应商发货地

HttpResponseMessage
NameDescriptionTypeAdditional information
Version

Version

None.

Content

HttpContent

None.

StatusCode

HttpStatusCode

None.

ReasonPhrase

string

None.

Headers

Collection of Object

None.

RequestMessage

HttpRequestMessage

None.

IsSuccessStatusCode

boolean

None.