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

# Update Ad Group Budget

> Updates a Reddit Ads ad group's budget amount and optionally its daily/lifetime goal type

Updates a Reddit Ads ad group's budget amount and optionally its daily/lifetime goal type. Amounts are in the account currency, not micros.

|                       |                                     |
| --------------------- | ----------------------------------- |
| **App**               | Reddit Ads                          |
| **Operation ID**      | `reddit_ads_update_ad_group_budget` |
| **Type**              | Action                              |
| **Connection**        | `reddit_ads` (required)             |
| **Credits per run**   | 1                                   |
| **Agent / MCP tool**  | Yes                                 |
| **Requires approval** | Yes (write operation)               |

## Inputs

| Field         | Type                       | Required | Default | Description                                                                                                               |
| ------------- | -------------------------- | -------- | ------- | ------------------------------------------------------------------------------------------------------------------------- |
| `account`     | DynamicAccount             | Yes      | -       | Select the Reddit Ads account that owns the ad group.                                                                     |
| `ad_group_id` | string or SelectItem       | Yes      | -       | ID of the ad group whose budget to update.                                                                                |
| `goal_value`  | number                     | Yes      | -       | New budget amount in the account currency (converted to microcurrency automatically), daily or lifetime per goal\_type.   |
| `goal_type`   | string or SelectableOption | No       | -       | Optionally change the budget goal type. Options: 'DAILY\_SPEND', 'LIFETIME\_SPEND'. Leave unset to keep the current type. |

### SelectItem

| Field   | Type   | Required | Default | Description                                                                                          |
| ------- | ------ | -------- | ------- | ---------------------------------------------------------------------------------------------------- |
| `value` | string | Yes      | -       | The value of the selectable item.                                                                    |
| `label` | string | Yes      | -       | The label of the selectable item, used for display purposes. If not provided, defaults to the value. |

### SelectableOption

| Field   | Type   | Required | Default | Description |
| ------- | ------ | -------- | ------- | ----------- |
| `value` | string | Yes      | -       |             |
| `label` | string | Yes      | -       |             |

## Output

**Type**: `Dict`

Returns the updated ad group budget.

**Fields**: `ad_group_id`, `goal_type`, `goal_value`
