> 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-solutions/cms/operations/data-sync-jobs/sample-flows.md ## Article Content: # Data Sync Jobs API: Sample Use Case & Flow This article presents a possible use case and corresponding sample flow that you can support. This can be a helpful starting point as you plan your implementation. ## Automate recurring data transfers and monitor execution results You can automatically synchronize customer data from an external CRM system to a Wix site's database every night at 2 AM. This ensures that every morning the site has the latest customer information without manual intervention. To automate recurring data transfers: Call [Create Data Sync Job](https://dev.wix.com/docs/api-reference/business-solutions/cms/operations/data-sync-jobs/create-data-sync-job.md) with a cron expression `0 2 * * *` to schedule daily execution after 2\:00 AM UTC. Specify the external CRM data source as `source` and the target Wix database collection as `destination`. Set `enabled` to `true` to activate the scheduled job. The system automatically runs the job daily, creating a new [data movement job](https://dev.wix.com/docs/api-reference/business-solutions/cms/operations/data-movement-jobs/job-object.md) for each execution. To monitor execution results: 1. Call [Get Data Sync Job](https://dev.wix.com/docs/api-reference/business-solutions/cms/operations/data-sync-jobs/get-data-sync-job.md) and retrieve the `lastJobId`. 1. Use that ID to call [Get Job](https://dev.wix.com/docs/api-reference/business-solutions/cms/operations/data-movement-jobs/get-job.md) and check the `status`.