> Portal Navigation:
> 
> - Append `.md` to any URL under `https://dev.wix.com/docs/` to get its markdown version.
> - Pages are either content pages (article or reference text) or menu pages (a list of links to child pages).
> - To get a menu page, truncate any URL to a parent path and append `.md` (e.g. `https://dev.wix.com/docs/sdk.md`, `https://dev.wix.com/docs/sdk/core-modules.md`).
> - Top-level index of all portals: https://dev.wix.com/docs/llms.txt
> - Full concatenated docs: https://dev.wix.com/docs/llms-full.txt

## Resource: Sample Flows

## Article: Sample Flows

## Article Link: https://dev.wix.com/docs/api-reference/business-management/site-properties/properties/sample-flows.md

## Article Content:

# Site Properties API: Sample Flows

This article presents a possible use case and corresponding sample flow that you can support. It provides a useful starting point as you plan your implementation.

## Synchronize a site's regional settings with an external system

An external system may use a site's payment currency and time zone to localize prices, schedules, or reports. You can compare the stored settings and update changed values without overwriting the rest of the site's properties.

To synchronize a site's regional settings:

1. Call [Get Site Properties](https://dev.wix.com/docs/api-reference/business-management/site-properties/properties/read.md) and retrieve `paymentCurrency` and `timeZone`.
1. Compare the returned values with the corresponding values in the external system.
1. Call [Update Business Region](https://dev.wix.com/docs/api-reference/business-management/site-properties/properties/update-business-region.md). Specify the changed values in `businessRegion` and list the same properties in `fields.paths`. For example:

    ```json
    {
      "businessRegion": {
        "paymentCurrency": "USD",
        "timeZone": "America/New_York"
      },
      "fields": {
        "paths": ["paymentCurrency", "timeZone"]
      }
    }
    ```