All requests require three headers:
Authorization: Bearer YOUR_TOKEN, X-Tenant-ID: YOUR_TENANT_ID, and X-Org-ID: YOUR_ORG_ID. Updating settings requires the Admin role.Get tenant settings
Retrieve the current operational settings for your tenant.GET /api/v1/settings/tenant
Headers
Bearer token from your authentication provider.
UUID of your tenant.
UUID of your organization.
Response
UUID of the settings record.
UUID of the organization.
UUID of the tenant.
How inventory is reserved for orders.
HARD allocates stock at order time; SOFT reserves without a hard deduction until fulfillment.Whether Synq automatically creates purchase orders when stock falls below the low stock threshold.
Number of units below which Synq flags a variant as low stock (and triggers auto-PO if enabled).
Inventory valuation method.
WAC uses weighted average cost; FIFO uses first-in, first-out.UUID of the user who last updated these settings.
ISO 8601 creation timestamp.
ISO 8601 last-updated timestamp.
Update tenant settings
Update the operational settings for your tenant. You must have theAdmin role to call this endpoint. All fields are replaced with the values you provide — send the full settings object to avoid unintentional resets.
PUT /api/v1/settings/tenant
Headers
Bearer token from your authentication provider. The calling user must have the
Admin role.UUID of your tenant.
UUID of your organization.
Body
Inventory reservation strategy. Must be
HARD or SOFT.HARD— stock is immediately decremented when an order is placed. Overselling is prevented.SOFT— stock is earmarked but not decremented until the order is fulfilled. Useful for high-volume flash sales.
HARD.Set to
true to have Synq automatically create a draft purchase order whenever a variant’s available stock falls at or below default_low_stock_threshold.The unit count at which a variant is considered low stock. Must be
0 or greater. For example, a value of 10 means any variant with 10 or fewer units on hand is flagged.How Synq calculates the cost of goods sold. Must be
WAC (Weighted Average Cost) or FIFO (First In, First Out).Defaults to WAC.