curl --request POST \
--url https://omnicommerce.sg/api/v1/products/enrich \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"productIds": [
"omni-product-id"
]
}
'const options = {
method: 'POST',
headers: {Authorization: 'Bearer <token>', 'Content-Type': 'application/json'},
body: JSON.stringify({productIds: ['omni-product-id']})
};
fetch('https://omnicommerce.sg/api/v1/products/enrich', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));import requests
url = "https://omnicommerce.sg/api/v1/products/enrich"
payload = { "productIds": ["omni-product-id"] }
headers = {
"Authorization": "Bearer <token>",
"Content-Type": "application/json"
}
response = requests.post(url, json=payload, headers=headers)
print(response.text){
"ok": true,
"status": "accepted",
"jobId": "<string>",
"links": {},
"data": {
"success": true,
"queued": true,
"productIds": [
"<string>"
],
"jobIds": [
"<string>"
],
"succeededCount": 1,
"failedCount": 1,
"results": [
{
"productId": "<string>",
"success": true,
"jobId": "<string>"
}
],
"batchJobId": "<string>",
"enrichmentBatchId": "<string>"
},
"apiVersion": "<string>",
"operationId": "<string>",
"warnings": [
"<string>"
],
"recommendations": [
"<string>"
]
}Queue Product Enrichment
Requires catalog:enrich. Queue content enrichment for 1–1,000 existing Omni product IDs across all supported marketplaces. Returns 202 after queue submission without awaiting AI completion or publishing.
Enrichment options
Fields, instructions and auto-apply settings use the canonical enrichment service. Exclude name from selectedFields to preserve titles. Weight and dimensions are always included; image and taxonomy workflows are not queued here.
autoApplyHighConfidence defaults to false. When enabled, the supplied threshold (0.62–1) or organization threshold applies; low-confidence or blocked proposals remain in Review. AI usage is billed to the authenticated organization. Open links.review to inspect results.
curl --request POST \
--url https://omnicommerce.sg/api/v1/products/enrich \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"productIds": [
"omni-product-id"
]
}
'const options = {
method: 'POST',
headers: {Authorization: 'Bearer <token>', 'Content-Type': 'application/json'},
body: JSON.stringify({productIds: ['omni-product-id']})
};
fetch('https://omnicommerce.sg/api/v1/products/enrich', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));import requests
url = "https://omnicommerce.sg/api/v1/products/enrich"
payload = { "productIds": ["omni-product-id"] }
headers = {
"Authorization": "Bearer <token>",
"Content-Type": "application/json"
}
response = requests.post(url, json=payload, headers=headers)
print(response.text){
"ok": true,
"status": "accepted",
"jobId": "<string>",
"links": {},
"data": {
"success": true,
"queued": true,
"productIds": [
"<string>"
],
"jobIds": [
"<string>"
],
"succeededCount": 1,
"failedCount": 1,
"results": [
{
"productId": "<string>",
"success": true,
"jobId": "<string>"
}
],
"batchJobId": "<string>",
"enrichmentBatchId": "<string>"
},
"apiVersion": "<string>",
"operationId": "<string>",
"warnings": [
"<string>"
],
"recommendations": [
"<string>"
]
}Authorizations
Bearer API key for server-to-server access. Session auth is also supported in first-party UI flows.
Body
Existing Omni product IDs. Trimmed and deduplicated in requested order; at most 1,000 entries.
1 - 1000 elements1 - 255Required for session auth; derived from the credential for bearer auth.
1 - 255Fields to enrich. Omit for all content fields. Weight and dimensions are always included by the enrichment service. Exclude name to preserve the product title.
1 - 7 elementsname, description, highlights, seoTitle, seoDescription, weight, dimensions 2000120Confidence threshold for automatic application when enabled. Omit to use the organization's threshold.
0.62 <= x <= 1