POST api/Member/UpdateAccountDetail
Request Information
URI Parameters
None.
Body Parameters
AccountDetailModel| Name | Description | Type | Additional information |
|---|---|---|---|
| MemberId | integer |
None. |
|
| BankId | integer |
None. |
|
| BankName | string |
None. |
|
| AccountNumber | string |
None. |
|
| IFSCCode | string |
None. |
Request Formats
application/json, text/json
Sample:
{
"MemberId": 1,
"BankId": 2,
"BankName": "sample string 3",
"AccountNumber": "sample string 4",
"IFSCCode": "sample string 5"
}
application/xml, text/xml
Sample:
<AccountDetailModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/UnionOwnersBackend.Models"> <AccountNumber>sample string 4</AccountNumber> <BankId>2</BankId> <BankName>sample string 3</BankName> <IFSCCode>sample string 5</IFSCCode> <MemberId>1</MemberId> </AccountDetailModel>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
Collection of ObjectNone.
Response Formats
application/json, text/json
Sample:
{}
application/xml, text/xml
Sample:
<ArrayOfKeyValueOfstringanyType xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.microsoft.com/2003/10/Serialization/Arrays" />