docs/CreateTemplateCampaign.md in talon_one-3.0.2 vs docs/CreateTemplateCampaign.md in talon_one-5.0.0
- old
+ new
@@ -8,12 +8,14 @@
**description** | **String** | A detailed description of the campaign. | [optional]
**template_id** | **Integer** | The ID of the Campaign Template which will be used in order to create the Campaign. |
**campaign_attributes_overrides** | [**Object**](.md) | Custom Campaign Attributes. If the Campaign Template defines the same values, they will be overridden. | [optional]
**template_param_values** | [**Array<Binding>**](Binding.md) | Actual values to replace the template placeholder values in the Ruleset bindings. Values for all Template Parameters must be provided. | [optional]
**limit_overrides** | [**Array<LimitConfig>**](LimitConfig.md) | Limits for this Campaign. If the Campaign Template or Application define default values for the same limits, they will be overridden. | [optional]
-**campaign_groups** | **Array<Integer>** | The IDs of the [campaign groups](https://docs.talon.one/docs/product/account/managing-campaign-groups) this campaign belongs to. | [optional]
+**campaign_groups** | **Array<Integer>** | The IDs of the [campaign groups](https://docs.talon.one/docs/product/account/account-settings/managing-campaign-groups) this campaign belongs to. | [optional]
**tags** | **Array<String>** | A list of tags for the campaign. If the campaign template has tags, they will be overridden by this list. | [optional]
+**evaluation_group_id** | **Integer** | The ID of the campaign evaluation group the campaign belongs to. | [optional]
+**linked_store_ids** | **Array<Integer>** | A list of store IDs that are linked to the campaign. **Note:** Campaigns with linked store IDs will only be evaluated when there is a [customer session update](https://docs.talon.one/integration-api#tag/Customer-sessions/operation/updateCustomerSessionV2) that references a linked store. | [optional]
## Code Sample
```ruby
require 'TalonOne'
@@ -23,9 +25,11 @@
template_id: 4,
campaign_attributes_overrides: null,
template_param_values: null,
limit_overrides: null,
campaign_groups: [1, 3],
- tags: [summer])
+ tags: [summer],
+ evaluation_group_id: 2,
+ linked_store_ids: [1, 2, 3])
```