API: Products
API: Products
Programmatic access — early access
The
tieback
API is available to selected workspaces during early access. Endpoints in production today are authenticated with an authenticated session. Standalone API-key access is being onboarded per workspace. Contact
tieback
to enable API credentials for your workspace.
What It Does
The Products API provides RPCs for updating individual products and applying bulk updates across many products in a single request.
Who It’s For
Developers building integrations that sync product catalogues, apply attribute corrections, or automate product data management.
update_product
What it does
Updates a single product’s attributes by applying a JSON patch. The patch is merged server-side, only included fields are changed. Attribute values are validated against the brand’s DPP schema.
Request
Response (example)
Errors (examples)
- Not authenticated: request has no valid JWT.
- Forbidden: caller does not have sufficient access for this operation.
- Invalid input: request is malformed or cannot be processed.
bulk_update_products
What it does
Applies patches to multiple products in a single synchronous request. Each product is processed independently, a failure on one row does not roll back others.
Request
Response (example)
Errors (examples)
- Not authenticated: request has no valid JWT or the token has expired.
- Forbidden: caller does not have admin access to the specified brand.
- Invalid input: patches array is malformed or contains invalid field values.
Limits & Notes
- Both RPCs require authentication with an admin role for the specified brand.
- Attribute patches are validated against the brand’s DPP schema.
bulk_update_productsprocesses all items synchronously; for larger workloads, use the asynchronous bulk update job workflow.- Identifier fields (SKU, GTIN, EAN, UPC) cannot be updated via product patches, use the Identifiers API instead.
FAQ
Can I create a product via this API?
Product creation is handled via the import workflow. update_product is for updating existing products.
Is the bulk update synchronous or asynchronous?
bulk_update_products is synchronous. For large-scale updates with progress tracking, use the async job workflow documented in Bulk Updates.