diff --git a/_docs/_partners/message_orchestration/channel_extensions/ecommerce/shopify.md b/_docs/_partners/message_orchestration/channel_extensions/ecommerce/shopify.md index de2551391a8..75f3d3a1ce0 100644 --- a/_docs/_partners/message_orchestration/channel_extensions/ecommerce/shopify.md +++ b/_docs/_partners/message_orchestration/channel_extensions/ecommerce/shopify.md @@ -18,7 +18,7 @@ guide_featured_list: link: /docs/scripttag_web_sdk_integration/ fa_icon: fa-solid fa-tag - name: Setting up Shopify - link: /docs/setting_up_shopify/ + link: /docs/partners/message_orchestration/channel_extensions/ecommerce/shopify/setting_up_shopify/ fa_icon: fa fa-shopping-cart - name: Shopify Data Processing link: /docs/shopify_processing/ diff --git a/_docs/_partners/message_orchestration/channel_extensions/ecommerce/shopify/shopify_data_processing.md b/_docs/_partners/message_orchestration/channel_extensions/ecommerce/shopify/shopify_data_processing.md index 2026c10a085..8abc2730be3 100644 --- a/_docs/_partners/message_orchestration/channel_extensions/ecommerce/shopify/shopify_data_processing.md +++ b/_docs/_partners/message_orchestration/channel_extensions/ecommerce/shopify/shopify_data_processing.md @@ -457,12 +457,42 @@ Once the app installation is complete, Braze automatically creates your webhook {% tab Shopify Custom Attributes %} | Attribute Name | Description | | --- | --- | +| `shopify_accepts_marketing` | This custom attribute corresponds to the email marketing opt-in status that is captured on the checkout page. | +| `shopify_sms_consent` | This custom attribute corresponds to the SMS marketing opt-in status that is captured on the checkout page. | | `shopify_tags` | This attribute corresponds to the [customer tags](https://help.shopify.com/en/manual/shopify-admin/productivity-tools/using-tags#tag-types) set by Shopify admins. | {: .reset-td-br-1 .reset-td-br-2} {% endtab %} {% tab Example Payload %} {% subtabs local %} +{% subtab Shopify SMS Consent %} +```json +{ + "attributes": [ + { + "external_id": "user_id", + "shopify_sms_consent": { + "state": "subscribed", + "opt_in_level": "single_opt_in", + "collected_from": "other" + } + } + ] +} +``` +{% endsubtab %} +{% subtab Shopify Accepts Marketing (Email) %} +```json +{ + "attributes": [ + { + "external_id": "user_id", + "shopify_accepts_marketing": true + } + ] +} +``` +{% endsubtab %} {% subtab Shopify Tags %} ```json {