Operator guideEN

Monthly Limits / List

Monthly-limit inventory page for reviewing configured limits, opening saved records, and toggling active status.

How to use this guide

Start with the main guide

Follow the explanation and examples first. Extra definitions and formulas are available below when you need them.

What this page shows

This page lists the configured monthly-limit records. Operators use it to review the deposit-count and deposit-amount rules, open create/edit flows, and quickly enable or disable a saved limit.

How to read it

  • From Deposit and To Deposit show the inclusive deposit-count range when deposit count is used.
  • Total Deposit Amount (EUR) is displayed with two decimals and represents the amount threshold when amount matching is used.
  • Monthly Limit (EUR) is displayed with two decimals and represents the limit value stored on the row.
  • Do Not Use Deposit Count explains whether the count range is ignored.
  • Do Not Use By Amount explains whether the amount threshold is ignored.
  • Status shows Active or Disabled and is also the quick toggle target.

Actions operators can use

  • Create opens the create form. No monthly-limit row is created until that form is submitted.
  • Edit opens the selected row detail workspace.
  • Clicking the Status cell toggles the row between active and disabled.
  • Pagination changes which saved rows are shown in the table.

Known caveats

  • The list is sorted by To Deposit ascending in the backend.
  • The create button is visible in the verified page code without a local permission check.
  • The status toggle has no confirmation dialog and no visible success toast in the verified list component.
  • Toggle failure is thrown by the hook as a generic failure, but the verified table component does not render a dedicated row-level error message.
  • Amounts on this list are labelled in EUR and rendered to two decimal places by the frontend.
More details

Definitions and formulas

Open only the section you need. The relevant section opens automatically when you request help for a specific item on screen.

Calculations7 topicsOpen details

List pagination

Pagination controls which monthly-limit rows are shown in the table.

Inputs
pageNo, limit
Transform
Backend applies limit and offset when both page number and limit are present; otherwise it returns the full sorted set.
Caveats
Backend sorting is by `To Deposit` ascending.

Amount display rounding

The table presents amount thresholds and cap values with two decimal places.

Inputs
totalDepositAmount, monthlyLimit
Transform
Frontend renders both amount columns with Number(value).toFixed(2).

Status toggle

Clicking the status cell enables a disabled row or disables an active row.

Inputs
id, isActive
Transform
Next active state is the opposite of the current row `isActive` value.
Caveats
The mutation is sent immediately after click and has no confirmation step., Successful toggle refreshes the list.

Both conditions active

Use this configuration when the monthly limit should match users only when both conditions apply.

Inputs
fromDeposit, toDeposit, totalDepositAmount, doNotUseDepositCount, doNotUseByAmount
Transform
When both checkboxes are off, FE explains that both the deposit-count range and deposit-amount threshold are evaluated.

Count-only condition

Use this when the monthly limit should depend on deposit count and ignore the amount threshold.

Inputs
fromDeposit, toDeposit, doNotUseByAmount
Transform
When `Do Not Use By Amount` is on, FE explains that only the deposit-count range matters.

Amount-only condition

Use this when the monthly limit should depend on deposit amount and ignore deposit count.

Inputs
totalDepositAmount, doNotUseDepositCount
Transform
When `Do Not Use Deposit Count` is on, FE explains that only the deposit-amount threshold matters.

Universal condition

Use this when the monthly limit should apply to everyone regardless of deposit history.

Inputs
doNotUseDepositCount, doNotUseByAmount
Transform
When both checkboxes are on, FE explains that the limit applies universally.
Fields13 topicsOpen details

Monthly Limits Configuration Guide

Collapsible guide explaining how deposit-count and amount conditions combine.

Data Type
section

Create

Opens the create form for a new monthly-limit record.

Data Type
action

Loader

Temporary loading state while the monthly-limit list request is pending.

Data Type
state

ID

Internal identifier for the limit row.

Data Type
integer

From Deposit

Lower bound of the deposit-count range used by the limit.

Data Type
integer
Caveats
The page guide describes the range as inclusive.

To Deposit

Upper bound of the deposit-count range used by the limit.

Data Type
integer
Caveats
Backend list sorting uses this field ascending.

Total Deposit Amount (EUR)

Deposit-amount threshold used by the limit.

Data Type
number
Display Rule
Rendered with two decimal places.

Monthly Limit (EUR)

Cap value applied by the limit.

Data Type
number
Display Rule
Rendered with two decimal places.

Do Not Use Deposit Count

Shows whether the deposit-count range is ignored for this record.

Data Type
boolean
Display Mapping
True: Yes | False: No

Do Not Use By Amount

Shows whether the deposit-amount condition is ignored for this record.

Data Type
boolean
Display Mapping
True: Yes | False: No

Status

Shows whether the record is active and doubles as the quick toggle control.

Data Type
boolean
Display Mapping
True: Active | False: Disabled
Caveats
The entire status cell has an invisible click target for toggling the value.

Edit

Opens the selected monthly-limit detail workspace.

Data Type
action

Pagination

Moves through saved monthly-limit rows and changes the page size.

Data Type
control
More help

Related pages

Monthly Limits / Detail

Saved monthly-limit edit workspace for one rule, including persisted active state and gate logic.

Monthly Limits / Form

Create workspace for monthly-limit rules, including deposit-count and amount gates plus create-time backend caveats.

Monthly Limits

Operator guide for monthly-limit inventory, create flow, and edit workspace.

Activity Tag Rules / List

Main inventory for activity-driven tag rules, with search, activity and status filters, grouped rows, clone, edit, and run actions.

Affiliate Deals / List

Searchable table of affiliate deal rows with PID filter, create action, dashboard shortcut, and edit/delete row actions.

Affiliate Payment Settings / List

Affiliate payment settings inventory page for reviewing configured rows and opening saved records.