Finding a way to set "Country/Region of origin" via flow

This might require a Product variant added trigger instead, since that returns an inventoryItem id that can be inserted into the mutation input as a variable. Then the mutation input probably looks something like this, but I haven’t tested it:

{
  "id": "{{productVariant.inventoryItem.id}}",
  "input": {
    "countryCodeOfOrigin": "JP"
  }
}
1 Like