Variables

Here is a list of all available Dynamic Values that you can use:

Property

Description

Type

{{user_id}}

Customer Shopify ID

ex. 3416346149010

STRING

{{user_email}}

Customer Shopify Email

ex. mybeautiful@developerpage.com

STRING

{{user_first_name}}

Customer Shopify First Name

ex. John

STRING

{{user_last_name}}

Customer Shopify Last Name

ex. Doe

STRING

{{user_token}}

Customer Shopify Token

ex. 13a6caf33cabb5e205a634f89d586801

STRING

{{user_is_logged_in}}

1 if the Customer is logged in the app, 0 if not

BOOLEAN

{{user_phone}}

Customer Shopify Phone

ex. 08 954829382

STRING

{{cart_items}}

List of articles in the cart of the logged in Customer

ex.

[
  {
    "product_id": 7418221789368,
    "product_title": "Ski+Goggles",
    "product_image": "https://cdn.shopify.com/s/files/1/0527/8416/9144/files/Shoppyvideoimage_8_9590c1d7-c0dc-4ef2-89e8-feb2cc35449a_1000x1000.png?v=1705053386",
    "variant_id": 42808268193976,
    "variant_title": "Small",
    "variant_image": "https://cdn.shopify.com/s/files/1/0527/8416/9144/files/Shoppyvideoimage_8_9590c1d7-c0dc-4ef2-89e8-feb2cc35449a_1000x1000.png?v=1705053386",
    "variant_price": {
      "amount": 0,
      "currency": "EUR"
    },
    "quantity": 1
  }
]

ARRAY

{{wishlist_items}}

List of articles in the wishlist if the Customer is logged in

[
    {
        "product_id": 7418221789368,
        "product_title": "Ski+Goggles",
        "product_image": "https://cdn.shopify.com/s/files/1/0527/8416/9144/files/Shoppyvideoimage_8_9590c1d7-c0dc-4ef2-89e8-feb2cc35449a_1000x1000.png?v=1705053386"
    },
    {
        "product_id": 7418218938552,
        "product_title": "Ski+Boots",
        "product_image": "https://cdn.shopify.com/s/files/1/0527/8416/9144/files/Shoppyvideoimage_4_1000x1000.png?v=1705053206"
    }
]

ARRAY

{{locale}}

Language the shop is viewed in

ex. it-IT

STRING

{{country}}

Customer Shopify Country

ex. IT

STRING

{{currency}}

Customer Shopify Currency

ex. EUR

STRING

{{device_id}}

Device ID

ex. EAPD2B3F-AA89-48F5-B71F-99DE7FD9CD9C

STRING

{{device_locale}}

Device Language

ex. it_IT

STRING

{{device_window_height}}

Height of device screen

ex. 844

STRING

{{device_window_width}}

Width of device screen

ex. 390

STRING

Last updated