# Register - Liquid Object Reference

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

## Description

The Register object exposes a POS register attached to an [Outlet - Liquid Object Reference](outlet-liquid-object-reference) to Liquid templates. It is available via `current_register` in POS contexts, and via the `registers` collection on an Outlet.

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

## Attributes

| Attribute | Type | Description |
|-----------|------|-------------|
| `active?` | Boolean | True if this register is active |
| `connected?` | Boolean | True if this register is currently connected |
| `data` | Map | Custom data fields for this register. Access via field API name (e.g. `data.lane_number__c`). |
| `id` | String | Unique Salesforce ID (sfid) for this register |
| `sfid` | String | **Deprecated** — use `id` instead |
| `name` | String | Name of this register |
| `outlet` | [Outlet - Liquid Object Reference](outlet-liquid-object-reference) | The outlet this register belongs to |

## Boolean attribute convention

`active?` and `connected?` use the Liquid predicate convention (trailing `?`). Use these forms in templates:


```liquid

{% if current_register.active? %}Active{% endif %}
{% if current_register.connected? %}Connected{% endif %}
```


The bare `active` and `connected` accessors (without `?`) still work but are deprecated and emit a console warning. Use the `?` form in all new templates.

## Custom data

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


```liquid

{{ current_register.data.lane_number__c }}
```


## Usage


```liquid

{{ current_register.name }}
{% if current_register.connected? %}Connected{% endif %}

{{ current_register.outlet.name }}

{{ current_register.data.lane_number__c }}
```


## Related

- [Outlet - Liquid Object Reference](outlet-liquid-object-reference) — the outlet this register belongs to
- [Using global Liquid tags](liquid-how-to-global-tags) — global context variables including `current_register`

---

## 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/register-liquid-object-reference