> For the complete documentation index, see [llms.txt](https://responsive-media.gitbook.io/advanced-free-shipping/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://responsive-media.gitbook.io/advanced-free-shipping/advanced-features/multiple-targets.md).

# Multiple Targets

## Overview

Multiple targets let you apply different discounts to different shipping methods within a single discount. Perfect for tiered shipping strategies.

## When to Use

Use multiple targets when:

* You want to make standard shipping free but discount express
* You want different discount levels for different methods
* You want to encourage specific shipping choices

## Example: Free Standard, Discounted Express

**Goal**: Make standard free, express 50% off

```
Conditions:
  - Cart total ≥ \$50

Target 1: Specific rates "Standard" → Free
Target 2: Specific rates "Express" → 50% off
```

**Customer sees**:

* Standard Shipping: FREE (was $5)
* Express Shipping: $7.50 (was $15)

## More Examples

<details>

<summary>Tiered by Speed</summary>

**Different discounts by shipping speed**

* Target 1: "Standard" → Free
* Target 2: "Express" → 50% off
* Target 3: "Overnight" → 25% off

</details>

<details>

<summary>Local vs Shipping</summary>

**Better deal for local delivery**

* Target 1: Local delivery → Free
* Target 2: All shipping rates → $5 off

</details>

<details>

<summary>Carrier-Specific</summary>

**Different discounts by carrier**

* Target 1: "USPS" → Free
* Target 2: "FedEx" → 50% off
* Target 3: "UPS" → 25% off

</details>

## Best Practices

{% hint style="info" %}
Use this to encourage economical shipping while still offering discounts on premium options.
{% endhint %}

{% hint style="info" %}
Make sure your target names match your actual shipping rate names.
{% endhint %}


---

# Agent Instructions
This documentation is published with GitBook. GitBook is the documentation platform designed so that both humans and AI agents can read, navigate, and reason over technical content effectively. Learn more at gitbook.com.

## 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, and the optional `goal` query parameter:

```
GET https://responsive-media.gitbook.io/advanced-free-shipping/advanced-features/multiple-targets.md?ask=<question>&goal=<endgoal>
```

`ask` is the immediate question: it should be specific, self-contained, and written in natural language.
`goal` is optional and describes the broader end goal you are ultimately trying to accomplish on behalf of the user. GitBook uses it to tailor the answer towards what is most useful for that goal.

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.
