> 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/wallet-services/8.-commission-management/7.-list-wallet.md).

# 7. List (Wallet)

## **Wallet Owner Commission List**

<mark style="color:blue;">`GET`</mark>`{{WalletUrl}}/api/v1/commission/by/wallet/:walletId?PageNumber=1&PageSize:10`&#x20;

{% hint style="info" %}
**Note:** To use this service, the **apikeypublic** and **apiclientpublic** parameters must be included in the Header field.

\
[<mark style="color:green;">**WalletAPI Address**</mark>](/payment-orchestration-integration-document/environment.md)
{% endhint %}

**The parameters that need to be sent to the service (Header) are as follows:**

<table><thead><tr><th width="162">Parameter</th><th width="79">Type</th><th width="107">Required</th><th width="403">Description</th></tr></thead><tbody><tr><td>apikeypublic</td><td>string</td><td>Yes</td><td>It is the general key used to provide API access.</td></tr><tr><td>apiclientpublic</td><td>string</td><td>Yes</td><td>It is the public identification key specific to the API client.</td></tr></tbody></table>

**The parameters that need to be sent to the service (QueryString) are as follows:**

| Parameter  | Description                                                       |
| ---------- | ----------------------------------------------------------------- |
| PageNumber | The value corresponding to the page number you want to list.      |
| PageSize   | The number of records you want to be returned on the listed page. |

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

```json
{
    "Items": [
        {
            "Id": "8c725256-3d51-4f40-9064-b29b3d576b6d",
            "Level": "Wallet",
            "MerchantId": null,
            "WalletOwnerId": null,
            "WalletId": "8811e7f9-7a49-43c2-9193-1c4825b81c24",
            "TransactionType": "Purchase",
            "FeeType": "Fixed",
            "FeeValue": 100.00,
            "ConditionType": "None",
            "ConditionThreshold": 0.00,
            "CurrencyCode": "TRY",
            "IsActive": true,
            "CreatedAt": "2025-05-01T15:25:38.134933Z",
            "UpdatedAt": null
        },
        {
            "Id": "816ec795-4aeb-4744-a311-e16055e7dc43",
            "Level": "Wallet",
            "MerchantId": null,
            "WalletOwnerId": null,
            "WalletId": "8811e7f9-7a49-43c2-9193-1c4825b81c24",
            "TransactionType": "Deposit",
            "FeeType": "Fixed",
            "FeeValue": 100.00,
            "ConditionType": "None",
            "ConditionThreshold": 0.00,
            "CurrencyCode": "TRY",
            "IsActive": true,
            "CreatedAt": "2025-05-01T15:17:33.391432Z",
            "UpdatedAt": null
        }
    ],
    "PageNumber": 1,
    "TotalPages": 1,
    "TotalCount": 2,
    "HasPreviousPage": false,
    "HasNextPage": false,
    "Errors": [],
    "IsSuccess": true,
    "IsFailure": false
}
```

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

## **Service Response**

<table><thead><tr><th width="192">Parameter</th><th width="147.89192708333331">Type</th><th>Description</th></tr></thead><tbody><tr><td>IsFailure</td><td>bool</td><td>Indicates whether the operation was unsuccessful. If true, an error has occurred.</td></tr><tr><td>IsSuccess</td><td>bool</td><td>Indicates whether the operation was successful. If true, it has been completed successfully.</td></tr><tr><td>Errors</td><td>Array</td><td>A list containing the details of any errors that occurred.</td></tr><tr><td>Value</td><td>Array</td><td>Contains the main data content returned in the case of a successful response.</td></tr></tbody></table>

## **Service Response** (Items)

<table><thead><tr><th width="234.05859375">Parameter</th><th width="162.38671875">Type</th><th width="348.94140625">Description</th></tr></thead><tbody><tr><td>Id</td><td>Guid</td><td>The unique identifier for the commission.</td></tr><tr><td>Level</td><td>string</td><td>Commission Level<br><br>See: <a href="/pages/ACAfPze7oCfne9o0D4f4">Commission Levels</a></td></tr><tr><td>MerchantId</td><td>int</td><td>Your merchant (business) PayWall identification information.</td></tr><tr><td>WalletOwnerId</td><td>Guid</td><td>The identification information of the wallet owner to whom the commission is assigned.</td></tr><tr><td>WalletId</td><td>Guid</td><td>The wallet identification information to which the commission is assigned.</td></tr><tr><td>TransactionType</td><td>string</td><td>Transaction Type for Commission<br><br>See: <a href="/pages/QEOVFuQcZJCoS7x5zE4c">Transaction Types</a></td></tr><tr><td>FeeType</td><td>string</td><td>Commission Type Information<br><br>See: <a href="/pages/BcidZpSf8tyYEOuK5QQ7">Cost Types</a></td></tr><tr><td>FeeValue</td><td>decimal</td><td>The value of the commission cost.</td></tr><tr><td>ConditionType</td><td>string</td><td>Condition Type for Commission<br><br>See: <a href="/pages/lPBupitvvqzHYZNOPUq8">Condition Types</a></td></tr><tr><td>ConditionThreshold</td><td>decimal</td><td>The condition value for the commission.</td></tr><tr><td>CurrencyCode</td><td>string</td><td>The currency in which the commission will be applied.</td></tr><tr><td>IsActive</td><td>bool</td><td>The active status of the commission.</td></tr><tr><td>CreatedAt</td><td>DateTime</td><td>The creation date of the record.</td></tr><tr><td>UpdatedAt</td><td>DateTime</td><td>The date when the record was last updated.</td></tr></tbody></table>


---

# 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/wallet-services/8.-commission-management/7.-list-wallet.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.
