Issuing spending controls
Learn how to use Issuing to set rules on cards and cardholders to control spending.
You can use spending controls to block merchant categories (for example, bakeries), countries, or merchant IDs, and to set spending limits such as 100 USD per authorization or 3000 USD per month. You can apply them to both Cards and Cardholders either by setting their spending_
fields when you create them or by updating them later.
The spending_
object has the following structure:
Field | Type | Description | |
---|---|---|---|
allowed_ | array | List of categories of authorizations to allow. All other categories will be blocked. | |
blocked_ | array | List of categories of authorizations to decline. All other categories will be allowed. | |
spending_ | array | List of objects that specify amount-based rules. | |
allowed_ | array | List of merchant countries to allow authorizations from. Authorizations from all other countries are blocked. | |
blocked_ | array | List of merchant countries to block authorizations from. Authorizations from all other countries are allowed. |
Spending controls run before real-time authorizations and can decline a purchase before the issuing_
is sent, resulting in a declined issuing_
event.
Note
Merchant ID spend controls are currently limited to beta users. You must be an Issuing customer to join the beta. To request access to the beta, Contact Stripe for more information.
Spending limits
Spending limit rules limit the total amount of spending for categories over intervals of time.
The spending_
field within spending_
is a list of objects that have the following structure:
Field | Type | Description |
---|---|---|
amount | integer | Maximum spend, in the currency of the card. Amounts in other currencies are converted to the card’s currency when evaluating this control. This amount is in the card’s currency and in the smallest currency unit. |
interval | enum | Time interval that the amount applies to. See the Card spending_controls for the possible values. All date-based intervals start at midnight UTC. |
categories | array (optional) | List of categories this limit applies to. Omitting this field will apply the limit to all categories. |
Note
If you don’t set spending_
, a default spending limit is applied to the newly created card in the amount of 500 USD per day. Contact Support to disable this behavior.
Note
In addition to the spending_
configured on card, a default spending limit in the amount of 10000 USD is also applied to each authorization. This isn’t configurable. Contact Support to disable this behavior.
A card’s spending limits apply across any cards it replaces (that is, its replacement_for card and that card’s replacement_for card, up the chain). A cardholder’s spending limits apply across all of their cards.
Each spending limit only applies to its own categories. Spending limits alone do not block categories and should be used with either allowed_
or blocked_
to restrict spending to specific business types.
If a cardholder has overlapping spending limits (for example, 100 USD per authorization and 50 USD per authorization for their card), the most restrictive spending control applies.
Additional tips and fees can be posted at a later time, causing a spending limit to be exceeded.
Examples
The following examples demonstrate different uses of spending controls for cards and cardholders.