POST api/Member/EditRecipients

Request Information

URI Parameters

None.

Body Parameters

EditRecipients
NameDescriptionTypeAdditional information
MemberId

integer

None.

recipient

Recipient

None.

Request Formats

application/json, text/json

Sample:
{
  "memberId": 1,
  "recipient": {
    "id": 1,
    "name": "sample string 2",
    "telephone": "sample string 3",
    "phone": "sample string 4",
    "address": "sample string 5",
    "city": 6,
    "area": 7,
    "isOverseas": true,
    "isSelected": true
  }
}

application/xml, text/xml

Sample:
<MemberOption.EditRecipients xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/BankproProduct.Models.ApiSQLOption">
  <MemberId>1</MemberId>
  <recipient>
    <Address>sample string 5</Address>
    <Area>7</Area>
    <City>6</City>
    <Id>1</Id>
    <IsOverseas>true</IsOverseas>
    <IsSelected>true</IsSelected>
    <Name>sample string 2</Name>
    <Phone>sample string 4</Phone>
    <Telephone>sample string 3</Telephone>
  </recipient>
</MemberOption.EditRecipients>

application/x-www-form-urlencoded

Sample:

Sample not available.

Response Information

Resource Description

IHttpActionResult

None.

Response Formats

application/json, text/json, application/xml, text/xml

Sample:

Sample not available.