curl --location 'https://api.dev.ordermesh.io/catalog/v1/merchantCatalog/effective/variants' \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '{
"merchantId": "merchant-123",
"skus": [
"SKU-001",
"SKU-002",
"SKU-003"
],
"pageSize": null,
"cursor": null
}'{
"merchantVariants": [
{
"id": null,
"sku": "SKU-001",
"merchantSku": "MERCHANT-SKU-001",
"merchantPrice": {
"currencies": [
{
"amount": 19.99,
"currency": "USD"
}
],
"amount": 19.99,
"currency": "USD"
},
"skipImageManipulation": null,
"productId": "product-123",
"decorations": [
{
"area": "Front",
"width": 1000,
"height": 1000,
"dpi": 300,
"method": "DirectToGarment",
"price": null,
"printImage": null,
"attributes": [
{
"name": "Placement",
"value": "Center Chest"
}
]
}
],
"attributes": [
{
"name": "Color",
"value": "Red"
},
{
"name": "Size",
"value": "Large"
}
],
"options": [
{
"name": "Packaging",
"value": "Gift Box"
}
],
"extras": [
{
"name": "Care Instructions",
"value": "Machine wash cold"
}
],
"shippingGroupId": null
}
],
"merchantHasCustomCatalog": true,
"nextCursor": ""
}