GET api/MemberBank/Get/{id}
Find member medical banking details
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| id | integer |
Required |
Body Parameters
None.
Response Information
Resource Description
MemberBank| Name | Description | Type | Additional information |
|---|---|---|---|
| MemberID | integer |
None. |
|
| BankID | integer |
None. |
|
| BankAccountTypeID | integer |
None. |
|
| AccountHolder | string |
None. |
|
| AccountNumber | integer |
None. |
|
| BranchCode | integer |
None. |
Response 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>