curl --request POST \
--url https://api-ai.textyess.com/products/bulk-update \
--header 'Content-Type: application/json' \
--header 'x-auth-token: <api-key>' \
--data '
{
"products": [
{
"id": "<string>",
"title": "<string>",
"description": "<string>",
"image": "<string>",
"url": "<string>",
"variants": [
{
"id": "<string>",
"title": "<string>",
"price": "<string>",
"inventory_quantity": 123,
"variant_url": "<string>"
}
],
"collections": [
{}
]
}
]
}
'