Hi, I am using shopify order rest api put request to update order tag but when I run the PUT request it removes the previous order tags. I want to keep the old tags and add the new tags in order.
Same happen with order notes.
Is there any solution ?
Link: https://shopify.dev/api/admin/rest/reference/orders/order#update-2021-07
Update an order’s tags
PUT /admin/api/2021-07/orders/450789469.json
{
"order": {
"id": 450789469,
"tags": "External, Inbound, Outbound"
}
}