# Outlet - Liquid Object Reference

Source: https://support.storeconnect.com/articles/outlet-liquid-object-reference · Last modified 21 August 2026

## Description

The Outlet object exposes a physical retail outlet to Liquid templates. It is primarily available in POS contexts via `current_outlet`, where it drives sync scope, register selection, and store linking.

:::note
`current_outlet` is available in POS Liquid templates and sync scope filters only. It is not populated in web theme templates.
:::

## Attributes

| Attribute | Type | Description |
|-----------|------|-------------|
| `address1` | String | First address line for this outlet |
| `address2` | String | Second address line for this outlet |
| `city` | String | City for this outlet |
| `country` | Object | Country for this outlet. In POS, only `country.name` is available — `alpha2`, `alpha3`, and `states` are not yet supported on the device. |
| `data` | Map | Custom data fields for this outlet. Access via field API name (e.g. `data.region__c`). |
| `id` | String | Unique Salesforce ID (sfid) for this outlet |
| `sfid` | String | **Deprecated** — use `id` instead |
| `name` | String | Name of this outlet |
| `phone` | String | Phone number for this outlet |
| `register_code` | String | Register code for this outlet |
| `registers` | Collection | Registers attached to this outlet. Each item is a [Register - Liquid Object Reference](register-liquid-object-reference) object. |
| `state` | String | State for this outlet |
| `store` | Object | The store this outlet belongs to |
| `tax_number` | String | Tax number for this outlet |
| `zip_code` | String | Zip/postal code for this outlet |

## Custom data

Custom fields defined on the Outlet Salesforce object are accessible via the `data` map using the field API name:


```liquid

{{ current_outlet.data.region__c }}
{{ current_outlet.data.s_c__warehouse_id__c }}
```


## Usage


```liquid

{{ current_outlet.name }}
{{ current_outlet.address1 }}, {{ current_outlet.city }} {{ current_outlet.state }} {{ current_outlet.zip_code }}

{% for register in current_outlet.registers %}
  {{ register.name }} ({{ register.id }})
{% endfor %}

{{ current_outlet.data.region__c }}
```


## Related

- [Register - Liquid Object Reference](register-liquid-object-reference) — registers attached to this outlet
- [Using global Liquid tags](liquid-how-to-global-tags) — global context variables including `current_outlet`

## Available on

- [Register - Liquid Object Reference](register-liquid-object-reference) — `outlet`

---

## Follow StoreConnect

- [Email Newsletter](https://getstoreconnect.com/c/lp-newsletter)
- [LinkedIn Newsletter](https://www.linkedin.com/build-relation/newsletter-follow?entityUrn=7444956928444862464)
- [YouTube](https://www.youtube.com/channel/UCngKdP2x8l1wcbAKW3tvU8g)
- [LinkedIn](https://www.linkedin.com/company/storeconnect)
- [X / Twitter](https://x.com/storeconnecthq)

## Popular Links

- [Partners](https://getstoreconnect.com/partners)
- [News](https://getstoreconnect.com/articles/news)
- [Events](https://getstoreconnect.com/articles/events)
- [Feature Comparison](https://getstoreconnect.com/how-we-compare)
- [Download a free trial](https://appexchange.salesforce.com/appxListingDetail?listingId=a0N3A00000FMkeKUAT)
- [Book a Demo](https://getstoreconnect.com/contact)

## Documentation

- [Help documentation](https://support.storeconnect.com/help-documentation)
- [AI agents](https://support.storeconnect.com/ai)
- [Videos & tutorials](https://support.storeconnect.com/videos-tutorials)
- [Developer reference](https://support.storeconnect.com/developer-reference)
- [Release notes](https://support.storeconnect.com/release-notes)
- [Troubleshooting](https://support.storeconnect.com/troubleshooting)
- [Trust Center](https://trust.getstoreconnect.com/)
- [Status Page](https://status.storeconnect.com/)

## Contact

- info@getstoreconnect.com
- US +1 415 745 3230
- AUS +61 2 8365 2308

100 S Ashley Dr, Suite 600-2461
Tampa FL 33602-600 USA

Level 22, Sydney Place
180 George Street
Sydney, NSW, 2000, AUS

---

StoreConnect Support — https://support.storeconnect.com/articles/outlet-liquid-object-reference