4. List

You can use this service to list the applied limits.

List Limit Records

GET{{WalletUrl}}/api/v1/limit?PageNumber=1&PageSize=10

Note: To use this service, it is mandatory to include the apikeypublic and apiclientpublic parameters in the Header field.

WalletAPI Address

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

Parameter
Type
Required
Description

apikeypublic

string

Yes

It is used for authentication in the service call.

apiclientpublic

string

Yes

It is used to identify the API client.

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

Parameter
Description

PageNumber

You can specify the page number with this parameter.

PageSize

You can specify the number of records to be listed on the page with this parameter.

{
    "Items": [
        {
            "Id": "5c9f2a4b-f4a7-486a-b3c9-b42c5b69386c",
            "LimitType": "Monthly",
            "LimitCategory": "Deposit",
            "LimitApproach": "Amount",
            "Value": 1000.00,
            "MerchantId": 2071,
            "CurrencyId": "2814d667-2e0f-4225-bf1d-b1dccea85805",
            "CurrencyCode": "TRY",
            "CreatedAt": "2025-04-29T08:43:04.891796Z",
            "UpdatedAt": null
        }
    ],
    "PageNumber": 1,
    "TotalPages": 1,
    "TotalCount": 1,
    "HasPreviousPage": false,
    "HasNextPage": false,
    "Errors": [],
    "IsSuccess": true,
    "IsFailure": false
}

Service Response

Parameter
Type
Description

IsFailure

bool

It returns false if the transaction is failed.

IsSuccess

bool

It returns true if the transaction is successful.

Errors

Array

It contains the error details.

HasNextPage

bool

It indicates whether there is a next page.

HasPreviousPage

bool

It indicates whether there is a previous page.

TotalCount

int

It specifies the total number of records.

TotalPages

int

It specifies the total number of pages.

PageNumber

int

It is the current page number.

Service Response (Items)

Parameter
Type
Description

Id

Guid

It is the unique identifier of the record.

LimitType

String

The type of the limit (e.g., transaction).

LimitCategory

String

The category of the limit.

LimitApproach

String

The method of evaluating the limit.

Value

Decimal

The numeric value of the limit.

MerchantId

Guid

The relevant merchant ID.

CurrencyId

Guid

The relevant currency ID.

CurrencyCode

String

The currency code.

CreatedAt

DateTime

Creation time.

UpdatedAt

DateTime

Update time.

Last updated