Hi,
I have a metafield on Shop resource which I am trying to update using Postman. the field type is Integer and I am making the request as below however I am not able to do it and getting the 404 error.
I have retrieved the metafield as -
{
“metafields”: [
{
“id”: 12305803870293,
“namespace”: “global”,
“key”: “custom-shipping-rate”,
“value”: 0,
“value_type”: “integer”,
“description”: “source”,
“owner_id”: 27170275413,
“created_at”: “2020-05-15T03:08:40-04:00”,
“updated_at”: “2020-05-15T03:08:40-04:00”,
“owner_resource”: “shop”,
“admin_graphql_api_id”: “gid://shopify/Metafield/12305803870293”
}
]
}
Put request body
{
“metafield”: {
“id”: 12305803870293,
“value”: 10,
“value_type”: “integer”
}
}
