Create recurring jobs
Define cron-style schedules that execute Source Parts actions on cadence. Jobs run inside our infrastructure or you can pull schedules into yours via webhooks.
await client.call("automation.scheduler.create", {
name: "weekly-price-refresh",
cron: "0 12 * * MON",
action: "pricing.syncToErp"
});