POST api/MemberBank/Update

Update member banking details

Request Information

URI Parameters

None.

Body Parameters

MemberBank
NameDescriptionTypeAdditional information
MemberID

integer

None.

BankID

integer

None.

BankAccountTypeID

integer

None.

AccountHolder

string

None.

AccountNumber

integer

None.

BranchCode

integer

None.

Request Formats

application/json, text/json

Sample:
{
  "MemberID": 1,
  "BankID": 2,
  "BankAccountTypeID": 3,
  "AccountHolder": "sample string 4",
  "AccountNumber": 5,
  "BranchCode": 6
}

application/xml, text/xml

Sample:
<MemberBank xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/XPH.Entities.Core">
  <AccountHolder>sample string 4</AccountHolder>
  <AccountNumber>5</AccountNumber>
  <BankAccountTypeID>3</BankAccountTypeID>
  <BankID>2</BankID>
  <BranchCode>6</BranchCode>
  <MemberID>1</MemberID>
</MemberBank>

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 'MemberBank'.

Response Information

Resource Description

JsonResultOfString
NameDescriptionTypeAdditional information
Content

string

None.

SerializerSettings

JsonSerializerSettings

None.

Encoding

Encoding

None.

Request

HttpRequestMessage

None.

Response Formats

application/json, text/json

Sample:

Sample not available.