Themes built on the Twig templating engine are now deprecated and require migration to Vitrin to ensure continued support and compatibility with Zid.
share_token
{ "product_id": "prod_123", "quantity": 2, "custom_fields": [ { "group_id": "cf_group_1", "price_settings": { "price": "10", "currency": "SAR" }, "type": "TEXT", "value": "Happy Birthday" } ], "sub_items": [ { "id": "item_456", "quantity": 1, "selection_group_id": "sg_001" } ], "share_token": "share_tok_abc" }
curl --location --request POST 'https://api.zid.sa//cart/items' \ --header 'Content-Type: application/json' \ --data-raw '{ "product_id": "prod_123", "quantity": 2, "custom_fields": [ { "group_id": "cf_group_1", "price_settings": { "price": "10", "currency": "SAR" }, "type": "TEXT", "value": "Happy Birthday" } ], "sub_items": [ { "id": "item_456", "quantity": 1, "selection_group_id": "sg_001" } ], "share_token": "share_tok_abc" }'
{ "item": { "id": 10, "product_id": "prod_123", "name": "Custom Mug", "quantity": 2, "price": 50, "price_string": "50 ر.س", "custom_fields": [ { "name": "string", "label": "string", "type": "string", "value": "string", "formatted_value": "string" } ] }, "cart_items_quantity": 3 }