curl --location --request PUT '/products/' \
--header 'X-Identifier: {{x_identifier}}' \
--header 'Authorization: Bearer {{token}}' \
--header 'Accept: application/json' \
--header 'Content-Type: application/json' \
--data-raw '{
    "status": "draft",
    "meta_title": "string",
    "meta_description": "string",
    "name": "string",
    "external_reference": "string",
    "description": "string",
    "short_description": "string",
    "slug": "string",
    "hs_code": "string",
    "country_of_origin": "string",
    "type": "standard",
    "categories": [
        {
            "name": "string",
            "external_identifier": "string",
            "update_on_exists": true
        }
    ],
    "brand_name": "string",
    "supplier_name": "string",
    "attributes": [
        {
            "key": "string",
            "value": "string",
            "is_feature": true,
            "is_labeled": true
        }
    ],
    "specifications": [
        {
            "title": "string",
            "specifications": [
                {
                    "key": "string",
                    "value": "string",
                    "is_featured": true
                }
            ]
        }
    ],
    "filter_tags": [
        "string"
    ],
    "images": [
        "string"
    ]
}'