> 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/5.-limit-usages/2.-limit-usage-walletowner.md).

# 2. Limit Usage (WalletOwner)

## Get Limit Usage

<mark style="color:green;">`GET`</mark>`{{WalletUrl}}/api/v1/limit/usage/by/walletowner/:id?Category=1&PageNumber=1&PageSize=10`&#x20;

{% hint style="info" %}
**Note:** To use this service, it is mandatory to include the **apikeypublic** and **apiclientpublic** parameters 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 (Headers) are as follows:**

<table><thead><tr><th width="162">Parameter</th><th width="109.6796875">Type</th><th width="141.02734375">Compolsory</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 information used to access the API services.</td></tr><tr><td>apiclientpublic</td><td>string</td><td>Yes</td><td>It is the public key information that identifies the client application.</td></tr></tbody></table>

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

| Parameter  | Desciption                                                                                                                                         |
| ---------- | -------------------------------------------------------------------------------------------------------------------------------------------------- |
| Id         | The identity information of the wallet owner whose limit usages you want to view.                                                                  |
| Category   | <p>You can specify the usage category of the limit with this parameter.<br><br>See: <a href="/pages/yhSd8QIt22sQ95LbMAUi">Limit Categories</a></p> |
| PageNumber | You can specify which page of the list of limit usages you want to retrieve with this parameter.                                                   |
| PageSize   | You can specify how many records you want to be listed in the list of limit usages with this parameter.                                            |

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

```json
{
    "Items": [
        {
            "Id": "30c84d1c-0a0f-48e1-9cfa-f1a5cb80e0a1",
            "WalletId": "da033986-a069-4ba0-a50f-1130f2a7ac1c",
            "LimitType": "Daily",
            "LimitCategory": "Deposit",
            "LimitApproach": "Amount",
            "UsedValue": 10101.00,
            "LimitValue": 100000.00,
            "RemainingValue": 89899.00,
            "PeriodStart": "2025-05-01T00:00:00Z",
            "PeriodEnd": "2025-05-01T23:59:59.999999Z",
            "IsActive": true,
            "CreatedAt": "2025-05-01T17:40:45.349167Z",
            "UpdatedAt": "2025-05-01T18:01:51.257616Z"
        }
    ],
    "PageNumber": 1,
    "TotalPages": 1,
    "TotalCount": 1,
    "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>Desciption</th></tr></thead><tbody><tr><td>IsFailure</td><td>bool</td><td>It returns true if the transaction failed.</td></tr><tr><td>IsSuccess</td><td>bool</td><td>It returns true if the transaction was successful.</td></tr><tr><td>Errors</td><td>Array</td><td>It is the list of errors encountered during the transaction.</td></tr><tr><td>HasNextPage</td><td>bool</td><td>It returns true if a next page is available.</td></tr><tr><td>TotalCount</td><td>int</td><td>It specifies the total number of records.</td></tr><tr><td>TotalPages</td><td>int</td><td>It specifies the total number of pages.</td></tr><tr><td>PageNumber</td><td>int</td><td>It shows the current page number.</td></tr><tr><td>Items</td><td>Array</td><td>It is the list of data returned within the page content.</td></tr></tbody></table>

## Service Response (Value)

<table><thead><tr><th width="234.05859375">Parameter</th><th width="162.38671875">Type</th><th width="348.94140625">Desciption</th></tr></thead><tbody><tr><td>Id</td><td>Guid</td><td>It is the identity information of the limit.</td></tr><tr><td>WalletId</td><td>Guid</td><td>Wallet identity information.</td></tr><tr><td>LimitType</td><td>string</td><td>The type of the relevant limit.<br><br>See: <a href="/pages/8WxqFp9P9sysluulqynj">Limit Types</a></td></tr><tr><td>LimitCategory</td><td>string</td><td>The category of the relevant limit.<br><br>See: <a href="/pages/yhSd8QIt22sQ95LbMAUi">Limit Categories</a></td></tr><tr><td>LimitApproach</td><td>string</td><td>The control type of the relevant limit.<br><br>See: <a href="/pages/Oe73wenQngio9pAM24ik">Limit Control Types</a></td></tr><tr><td>UsedValue</td><td>decimal</td><td>The used limit value.</td></tr><tr><td>LimitValue</td><td>decimal</td><td>Limit value.</td></tr><tr><td>PeriodStart</td><td>DateTime</td><td>The start date within the period the limit is defined.<br><br><mark style="color:blue;">Note: This date is refreshed after the period ends.</mark></td></tr><tr><td>PeriodEnd</td><td>DateTime</td><td>The end date within the period the limit is defined.</td></tr><tr><td>IsActive</td><td>bool</td><td>Active status.</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 update date of the record.</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/5.-limit-usages/2.-limit-usage-walletowner.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.
