Product Price is getting changed automatically in shopify

Hi Guys,

We have a situation, where we are doing a PUT operation to update a product in shopify, but in shopify response the product price is getting changed automatically. After checking the store currency configuration, it is found that the currency is maintained uniformly in both SAP and Shopify.

We are sending the below data request packet to update a product:

{
“product”: {
“id”: 7348954267840,
“variants”: {
“barcode”: 2020880114553,
“price”: 79.005,
“sku”: “1KANBLNCLUD214”,
“inventory_management”: “shopify”,
“weight”: 0,
“id”: 43154572673216
},
“product_type”: “Simple”
}
}


Please find the below response packet from shopify:

{
“product”: {
“id”: 7348954267840,
“title”: “110X140CM غيوم دب/ازرق”,
“body_html”: “”,
“vendor”: “KANAF”,
“product_type”: “Simple”,
“created_at”: “2022-09-13T15:31:57+03:00”,
“handle”: “110x140cm-غيوم-دب-ازرق”,
“updated_at”: “2022-09-15T15:10:41+03:00”,
“published_at”: “”,
“template_suffix”: “”,
“status”: “draft”,
“published_scope”: “web”,
“tags”: “”,
“admin_graphql_api_id”: “gid://shopify/Product/7348954267840”,
“variants”: {
“id”: 43154572673216,
“product_id”: 7348954267840,
“title”: “Default Title”,
“price”: 79005,
“sku”: “1KANBLNCLUD214”,
“position”: 1,
“inventory_policy”: “deny”,
“compare_at_price”: 0,
“fulfillment_service”: “manual”,
“inventory_management”: “shopify”,
“option1”: “Default Title”,
“option2”: “”,
“option3”: “”,
“created_at”: “2022-09-13T15:31:57+03:00”,
“updated_at”: “2022-09-15T15:10:41+03:00”,
“taxable”: true,
“barcode”: 2020880114553,
“grams”: 0,
“image_id”: “”,
“weight”: 0,
“weight_unit”: “kg”,
“inventory_item_id”: 45254847889600,
“inventory_quantity”: 10,
“old_inventory_quantity”: 10,
“requires_shipping”: true,
“admin_graphql_api_id”: “gid://shopify/ProductVariant/43154572673216”
},
“options”: {
“id”: 9450006511808,
“product_id”: 7348954267840,
“name”: “Title”,
“position”: 1,
“values”: “Default Title”
},
“image”: “”
}
}


Please check and let us know why the price value is getting changed.