# 4.Bank Methods

## List Bank Methods

<mark style="color:blue;">`GET`</mark> `{{MemberBaseAddress}}/api/paywall/member/bankaccount`

{% hint style="info" %}
**Important**: To use the member service, you need to send the '**apikeypublic**' and '**apiclientpublic**' parameters in the 'Header' field.<br>

[<mark style="color:green;">**MemberAPI**</mark> ](https://developer.paywall.one/payment-orchestration-integration-document/environment)[<mark style="color:green;">**Address**</mark>](https://developer.paywall.one/payment-orchestration-integration-document/environment)
{% endhint %}

**The Header information sent to the service is as follows:**

<table><thead><tr><th width="188">Parameter</th><th width="79">Type</th><th width="136">Compulsory</th><th width="403">Description</th></tr></thead><tbody><tr><td>apikeypublic</td><td>string</td><td>Yes</td><td>The Public Key obtained from the member business panel.</td></tr><tr><td>apiclientpublic</td><td>string</td><td>Yes</td><td>The Public Client acquired from the member business panel.</td></tr><tr><td>memberid</td><td>int</td><td>Yes</td><td>The member's ID information in the Paywall.</td></tr></tbody></table>

**The parameters returned from the service are as follows:**

<table><thead><tr><th width="189">Parameter</th><th width="100.33333333333331">Type</th><th>Description</th></tr></thead><tbody><tr><td>ErrorCode</td><td>int</td><td>Error code. It returns '0' if the operation is successful.</td></tr><tr><td>Result</td><td>bool</td><td>It returns a 'true' or 'false' value. If the operation is successful, it returns 'true'.</td></tr><tr><td>Message</td><td>string</td><td>If the operation is unsuccessful, it provides a message related to this error and offers language support based on the locale parameter.</td></tr><tr><td>Body</td><td>object</td><td>The transaction details</td></tr></tbody></table>

{% tabs %}
{% tab title="JSON" %}
{% code lineNumbers="true" %}

```json
{
    "ErrorCode": 0,
    "Result": true,
    "Message": "",
    "Body": null
}
```

{% endcode %}
{% endtab %}
{% endtabs %}
