# Fixed amount promotions

Commerce Layer provides a promotional engine built on top of two main resources: [promotions](/core-api-reference/promotions.md) and [promotion rules](/core-api-reference/promotion_rules.md).

When triggered, fixed amount promotions are responsible for adding a fixed amount discount to the orders involved.

## Application scope

Fixed amount promotions are defined by currency code and can be restricted to a specific active market (in which case the currency code is inherited by the market's price list). Within the time window given by their activation and expiration dates, fixed amount promotions that have not reached their total usage limit are considered active. If no promotion rule is associated with an active fixed amount promotion, the related discount is applied to:

* All the orders in the specified currency, if the promotion is not restricted to a specific market.
* All the orders of the market in scope, if the promotion is attached to a market.

Otherwise, if one or more promotion rules are defined, the promotion is triggered only when it matches all of them.

{% hint style="info" %}
Multiple fixed amount promotions can be applied to the same order, even concurrently with other promotion types (based on their [priority](/core-api-reference/promotions.md#priority-and-order-of-application) and up to the involved items amount [saturation](/core-api-reference/promotions.md#discount-distribution)), as long as you don't reach the maximum number of active promotions allowed for your organization.
{% endhint %}

## Discount calculation and distribution

If associated with an SKU list, the total discount due to fixed amount promotions is calculated and distributed on the matching line items of type `skus` or `bundles` belonging to that list. Otherwise, on all the [taxable items](/core-api-reference/orders.md#taxable-items) of the order. In both cases, the discount distribution is based on the ratio between the line item amount and the sum of the amounts of all the line items to which the promotion is applied.


---

# Agent Instructions: 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:

```
GET https://docs.commercelayer.io/core-api-reference/fixed_amount_promotions.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
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.
