> ## Documentation Index
> Fetch the complete documentation index at: https://snowseo.com/docs/llms.txt
> Use this file to discover all available pages before exploring further.

# Strategies

> List a brand's growth strategies and toggle which ones are active.

List the growth strategies (Actions) available for a brand. These drive the Automation → Actions tab. On first read, the brand is seeded with the default onboarding strategies.

<Note>
  Reading requires any team **member**.
</Note>

### Response fields

| Field            | Description                                 |
| ---------------- | ------------------------------------------- |
| `id`             | Strategy id (use this in the `PATCH` body). |
| `title`          | Strategy name.                              |
| `description`    | What the strategy does.                     |
| `slug`           | URL-safe identifier, or `null`.             |
| `steps.benefits` | List of benefit strings for the strategy.   |
| `isSelected`     | Whether the strategy is currently active.   |

***

## Toggle a Strategy

`PATCH /v3/settings/strategies`

Turn a single strategy on or off for the brand. Returns the updated strategy.

<Note>
  Writing requires **managed** (admin/owner) access to the brand.
</Note>

| Field        | Description                              |
| ------------ | ---------------------------------------- |
| `strategyId` | Id of the strategy to update (required). |
| `isSelected` | New active state (required boolean).     |

<Warning>
  A `strategyId` that doesn't belong to the brand returns `404`.
</Warning>
