POST api/PlaceOrder/AddReceiveAddress?DomainId={DomainId}&AccountId={AccountId}&PersonId={PersonId}

Request Information

URI Parameters

NameDescriptionTypeAdditional information
DomainId

域Id

globally unique identifier

None.

AccountId

账户Id

globally unique identifier

None.

PersonId

人员Id

globally unique identifier

None.

Body Parameters

ReceiveAddressVM
NameDescriptionTypeAdditional information
DealID

经销商ID

string

None.

PersonName

收货人

string

None.

Mobile

收货人电话

string

None.

Address

收货地址

string

None.

TID

string

None.

Request Formats

application/json, text/json

Sample:
{
  "DealID": "sample string 1",
  "PersonName": "sample string 2",
  "Mobile": "sample string 3",
  "Address": "sample string 4",
  "TID": "sample string 5"
}

application/xml, text/xml

Sample:
<ReceiveAddressVM xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/JT.VSFA.App.WebAPI.Areas.PlaceOrder.ViewModel">
  <Address>sample string 4</Address>
  <DealID>sample string 1</DealID>
  <Mobile>sample string 3</Mobile>
  <PersonName>sample string 2</PersonName>
  <TID>sample string 5</TID>
</ReceiveAddressVM>

application/x-www-form-urlencoded

Sample:

Sample not available.

Response Information

Resource Description

Object

None.

Response Formats

application/json, text/json

Sample:
{}

application/xml, text/xml

Sample:
<z:anyType xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns:z="http://schemas.microsoft.com/2003/10/Serialization/" />