> For the complete documentation index, see [llms.txt](https://developer.paywall.one/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://developer.paywall.one/payment-orchestration-integration-document/member-service/member-management/4.-members.md).

# 4. Members

## Member List

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

{% hint style="info" %}
**Important**: In order to use the member service, you need to send the '**apikeypublic**' and '**apiclientpublic**' **parameters** in the 'Header' field.\
\
[<mark style="color:green;">**MemberAPI**</mark> ](/payment-orchestration-integration-document/environment.md)[<mark style="color:green;">**Address**</mark>](/payment-orchestration-integration-document/environment.md)
{% endhint %}

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

<table><thead><tr><th width="199">Parameter</th><th width="105.22265625">Type</th><th width="130">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 merchant panel.</td></tr><tr><td>apiclientpublic</td><td>string</td><td>Yes</td><td>The Public Client obtained from the merchant panel.</td></tr><tr><td>start</td><td>int</td><td>Yes</td><td>Determines from which record the list will start bringing in members.</td></tr><tr><td>length</td><td>int</td><td>Yes</td><td>Determines from which record the list will start bringing how many members.</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. Returns '0' if the operation is successful.</td></tr><tr><td>Result</td><td>bool</td><td>Returns a 'true' or 'false' value. It returns 'true' if the operation is successful.</td></tr><tr><td>Message</td><td>string</td><td>If the operation is erroneous, this message is specific to the error and provides language support based on the 'locale' parameter.</td></tr><tr><td>Body</td><td>object</td><td>Contains the list of merchant members.</td></tr></tbody></table>

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

```json
{
    "ErrorCode": 0,
    "Result": true,
    "Message": "",
    "Body": [
        {
            "Id": 14,
            "IsSubMerchant": true,
            "MemberType": 1,
            "MemberExternalId": "111aa11135552244413",
            "MemberName": "Intranet Technology",
            "MemberTitle": "Intranet Technology Yazılım A.S",
            "MemberTaxOffice": "Besiktas",
            "MemberTaxNumber": "",
            "MemberIdentityNumber": "*1*1*1*1*1*",
            "MemberEmail": "member@paywall.one",
            "MemberPhone": "5554443322",
            "MemberAddress": "test adresi",
            "ContactName": "Member Name",
            "ContactLastname": "Lastname",
            "BankAccounts": [
                {
                    "Id": 24,
                    "CurrencyId": 2,
                    "Currency": "USD",
                    "Title": "Member Title A.S",
                    "Iban": "TR370006400000123456789876"
                },
                {
                    "Id": 25,
                    "CurrencyId": 3,
                    "Currency": "EUR",
                    "Title": "Member Title A.S",
                    "Iban": "TR370006407890987654312345"
                }
            ],
            "ValueDate": {
                "Id": 16,
                "CalculationType": 3, // Her ayın 1 günü
                "CalculationValue": 28, // 28. gün
                "Commission": 10.00 // %10 komisyon
            },
            "InsertDateTime": "2023-06-28T16:55:41.070934",
            "UpdateDateTime": "0001-01-01T00:00:00"
        }
    ]
}
```

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


---

# Agent Instructions
This documentation is published with GitBook. GitBook is the documentation platform designed so that both humans and AI agents can read, navigate, and reason over technical content effectively. Learn more at gitbook.com.

## Querying This Documentation
If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter, and the optional `goal` query parameter:

```
GET https://developer.paywall.one/payment-orchestration-integration-document/member-service/member-management/4.-members.md?ask=<question>&goal=<endgoal>
```

`ask` is the immediate question: it should be specific, self-contained, and written in natural language.
`goal` is optional and describes the broader end goal you are ultimately trying to accomplish on behalf of the user. GitBook uses it to tailor the answer towards what is most useful for that goal.

The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
