Get Daily Merchant Limit History

Get Daily Merchant Limit History

API: GetDailyMerchantLimitHistory

This API retrieves the history of daily limit changes for a merchant.

It allows filtering the results by date range and supports pagination, making it easier to track all limit adjustments applied to a store over time.

Each record includes the date of the change, the type of operation performed, and the previous and new limit values.


Request Structure

{
  "Method": "GetDailyMerchantLimitHistory",
  "BusinessUnitId": 30472,
  "PartnerId": 10409,
  "MerchantAccountKey": "843842-131409-0352588-6",
  "Type": 1,
  "StartDate": "2025-03-02T00:00:00Z",
  "EndDate": "2026-03-05T00:00:00Z",
  "PageIndex": 0,
  "PageSize": 10
}

 

Request Parameters


ParameterTypeDescriptionExampleMandatory
MethodstringMethod name"GetDailyMerchantLimitHistory"Yes
PartnerIdbigintInformation provided by FitBank10409Yes
BusinessUnitIdbigintInformation provided by FitBank30472Yes
MerchantAccountKeyvarcharMerchant account key used to identify the store"843842-131409-0352588-6"Yes
TypeintType of limit operation used for filtering the history1No
StartDatedatetimeInitial date used to filter the history records"2025-03-02T00:00:00Z"No
EndDatedatetimeFinal date used to filter the history records"2026-03-05T00:00:00Z"No
PageIndexintPage index for paginated results0No
PageSizeintNumber of records returned per page10No

Response Structure

{
  "Success": "true",
  "Message": "Method executed successfully.",
  "LimitHistories": [
    {
      "Date": "2026-03-05T10:46:02Z",
      "Type": 0,
      "OldValue": 1000,
      "NewValue": 1250
    },
    {
      "Date": "2026-03-03T11:10:17Z",
      "Type": 0,
      "OldValue": 1000,
      "NewValue": 1250
    }
  ],
  "TotalRecords": 2
}

 

Response Fields

FieldTypeDescription
SuccessbooleanIndicates whether the request was successfully processed.
MessagestringAPI response message describing the result of the operation.
LimitHistoriesarrayList containing the history of daily limit changes for the merchant.
TotalRecordsintTotal number of records returned for the query.

LimitHistories Object

FieldTypeDescription
DatedatetimeDate and time when the limit change occurred.
TypeintType of limit operation performed.
OldValuedecimalPrevious limit value before the change.
NewValuedecimalNew limit value after the change.