inventoryItemUpdate mutation
Updates an inventory item.
Required access
write_inventory
access scope.
On this page
Interactive example
This is an example mutation query.
mutation inventoryItemUpdate($id: ID!, $input: InventoryItemUpdateInput!) { inventoryItemUpdate(id: $id, input: $input) {} } { “id”: “Z2lkOi8vU2hvcGlmeS9FeGFtcGxlLzE=”, “input”: {} }
<font style="color:#1F61A0;">inventoryItem</font> <font style="color:#555555;">{</font>
<font style="color:#1F61A0;">id</font>
<font style="color:#555555;">}</font>
<font style="color:#1F61A0;">userErrors</font> <font style="color:#555555;">{</font>
<font style="color:#1F61A0;">field</font>
<font style="color:#1F61A0;">message</font>
<font style="color:#555555;">}</font>
Arguments
InventoryItemUpdateInput fields
- cost (
[Decimal](https://shopify.dev/docs/admin-api/graphql/reference/scalar#decimal-2021-01)
)
Unit cost associated with the inventory item, the currency is the shop’s default currency. - countryCodeOfOrigin (
[CountryCode](https://shopify.dev/docs/admin-api/graphql/reference/common-objects/countrycode)
)
The ISO code of the country of origin. - countryHarmonizedSystemCodes (
[[CountryHarmonizedSystemCodeInput!]](https://shopify.dev/docs/admin-api/graphql/reference/inventory/countryharmonizedsystemcodeinput)
)
List of country-specific harmonized system codes. - harmonizedSystemCode (
[String](https://shopify.dev/docs/admin-api/graphql/reference/scalar#string-2021-01)
)
The harmonized system code of the inventory item. - provinceCodeOfOrigin (
[String](https://shopify.dev/docs/admin-api/graphql/reference/scalar#string-2021-01)
)
The ISO code of the province of origin. - tracked (
[Boolean](https://shopify.dev/docs/admin-api/graphql/reference/scalar#boolean-2021-01)
)
Whether the inventory item is tracked.
Return fields
- inventoryItem (
[InventoryItem](https://shopify.dev/docs/admin-api/graphql/reference/inventory/inventoryitem)
)
The updated inventory item. - userErrors (
[[UserError!]!](https://shopify.dev/docs/admin-api/graphql/reference/usererror)
)
List of errors that occurred executing the mutation.