> For the complete documentation index, see [llms.txt](https://docs.getmesa.com/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://docs.getmesa.com/workflow-builder/fields/variables.md).

# Variables

## What is a variable?

Variables are representations of data, and when a workflow runs, variables are replaced with real data. Think of variables as the stand-in for the data you want to use, and once the show begins (we hear you yelling action!) that's when the real data comes in to steal the scene.

## Find and Use Variables

Let's begin with an example! Using one of our pre-built templates, [Receive an SMS message when someone creates a fraudulent order](https://app.getmesa.com/discover/send-an-sms-message-if-a-customer-places-a-fraudulent-order). Let's look at the SMS Send Message step. Here, you can see that the **Order Created > Phone** variable is used. When this workflow runs, this will be replaced with your customer's actual phone number.

<figure><img src="/files/PNBoE2ZoWUwKD2zwLenf" alt="Screenshot of MESA workflow builder, SMS Send Message step of the fraudulent order template. Spotlight the Order Created > Phone variable in the To phone number field."><figcaption></figcaption></figure>

Where do you find the variable that fits the part? You can find the Variables menu by clicking the \[**<>]** icon in the To phone number field. A menu will be displayed on the right-hand side.

<figure><img src="/files/LkSlfsXDOFmY5DND9qhY" alt="Screenshot of MESA workflow builder, SMS Send Message step To phone number field. Spotlight the <> icon that opens the Variables menu."><figcaption></figcaption></figure>

In the right-hand menu, feel free to use the search bar for "Phone" to find the Phone variable easily.

Since the variable data comes from an earlier step in the workflow, we'll want to select the step that best fits what we're looking to use for the customer's phone number. You'll notice there are several options.

You can click open the different objects that contain the variable you searched for to decide on the best one.

In this example, it's best to select the variable **Order Created > Phone.**

<figure><img src="/files/H24pHgUAVFdOx507wsiK" alt="Screenshot of MESA workflow builder, right-hand Variables menu searched for Phone with objects expanded. Spotlight the Order Created > Phone variable."><figcaption></figcaption></figure>

Once triggered, the order data will determine the customer's phone number for the SMS notification. For example, if an order is received from Jenny Smith (555-867-5309), the workflow will send a text message to 555-867-5309 when the order is flagged as fraudulent. In this particular case, it is recommended to add your phone number so you are notified of these flagged orders.

## Advanced Variable Use

Next, we're going to get technical about variables you can create without the variable menu.

### **Using global store settings**

Use the `{{context.shop.PARAMETER}}` variables to pull in settings from your Shopify store. Some common variables:

* `{{context.shop.email}}`: Your store's contact email. Set in the General page of your Shopify settings.
* `{{context.shop.domain}}`: Your store's url. Example: [www.mystore.com](http://www.mystore.com) if you have a custom domain, mystore.myshopify.com if you have not configured a custom domain.
* `{{context.shop.myshopify_domain}}`: Your .myshopify.com domain. Example: mystore.myshopify.com.
* `{{context.shop.name}}`: Your store's name. Example: My Store.

<figure><img src="/files/l0dkZHpZJAWbqLo7Vx4b" alt="Screenshot of MESA workflow builder, field using context.shop global store settings variables. Spotlight the {{context.shop.PARAMETER}} variable in the field."><figcaption></figcaption></figure>
