v2
latestOpenAPI 3.0.32026-08-05174296703.4 KBops
CategorizeProducts catalog
For the given product IDs, categorize them automatically with AI (open AI ChatGPT) For categorizing all seller products (that are not categorized) send an empty list for ids
post/ops/sellers/{seller_id}/catalog/categorize
Path parameters
seller_idstring regexp required
Seller ID
Example:739b63c2-9e58-4964-b38d-4ebb424de242
Seller ID
Query parameters
batch_sizeinteger
number of products per batch to be sent to openAI
Example:1
number of products per batch to be sent to openAI
num_workersinteger
number of workers to use for processing product batches
Example:2
number of workers to use for processing product batches
Request body
Example request
{
"ids": [
"abc123"
]
}Response
OK response.
Example response
{
"result": {
"errors": [
"abc123"
],
"total_categorized": 1,
"total_errors": 1,
"total_products": 1
}
}