# sync:full

Source: https://support.storeconnect.com/articles/pos-sync-full-action · Last modified 21 August 2026

`sync:full` forces a full re-download of POS data from the server. An optional `object` parameter limits the sync to a single object type rather than re-downloading everything.

This action is also triggered from the **Data Management** section in POS settings via the "Re-sync all data" button (which shows a confirmation modal before executing).

## Parameters

| Parameter | Type | Required | Description |
|-----------|------|----------|-------------|
| `object` | String | No | Sync only this object. Accepts a standard POS sync object API name (e.g. `product2`, `s_c__cart__c`) or a legacy alias (see below). Case-insensitive. If omitted, all objects are re-synced. |

### Legacy aliases

Some resources use friendly names rather than Salesforce object API names:

| Alias | Resource |
|-------|----------|
| `orders` | Orders |
| `stores` | Stores |
| `fulfillments` | Fulfillments |

If `object` is provided but not recognized as a valid sync object or legacy alias, the action logs `sync:full: unknown object <name>` to the console and does nothing.

## Behavior

| `object` value | Effect |
|----------------|--------|
| Omitted | Sets the force-sync flag to clear all existing data and starts a full sync of every object. |
| Valid sync object | Resets that object's sync cursor and re-paginates it from the start. Other objects are untouched. |
| Legacy alias | Resets the matching legacy cursor and triggers a full re-sync for that resource only. Other objects are untouched. |
| Unknown value | Logs an error to the console and does nothing. |

## Usage

### Action item configuration

Set the **Action** field on a `s_c__Pos_Action_Item__c` record:

```
sync:full
```

To sync a single object, set **Params** to:

```
object=product2
```

### JavaScript

```javascript

scAction('sync:full')                                  // re-sync everything
scAction('sync:full', { object: 'product2' })          // single regular object
scAction('sync:full', { object: 'orders' })            // single legacy resource
```

## Related

- [scAction](pos-sc-action) — the global JavaScript function for triggering actions
- [POS actions reference](pos-actions-reference) — list of all available actions

---

## 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/pos-sync-full-action