Anchor to inventoryItemUpdateinventory
inventoryItemUpdate
mutation
Requires access scope. Also: The user must have a permission to update an inventory item.
Updates an inventory item.
Anchor to Arguments
Arguments
- •ID!required
The ID of the inventory item to update.
- Anchor to inputinput•Inventory
Item requiredInput!
Was this section helpful?
Anchor to InventoryItemUpdatePayload returnsInventoryItemUpdatePayload returns
- Anchor to inventoryIteminventory•
Item The inventory item that was updated.
- Anchor to userErrorsuser•
Errors [UserError!]! non-null The list of errors that occurred from executing the mutation.
Was this section helpful?
- Updates an existing inventory item
- inventoryItemUpdate reference
Examples
1const { admin } = await authenticate.admin(request);23const response = await admin.graphql(4 `#graphql5 mutation inventoryItemUpdate($id: ID!, $input: InventoryItemInput!) {6 inventoryItemUpdate(id: $id, input: $input) {7 inventoryItem {8 id9 unitCost {10 amount11 }12 tracked13 countryCodeOfOrigin14 provinceCodeOfOrigin15 harmonizedSystemCode16 countryHarmonizedSystemCodes(first: 1) {17 edges {18 node {19 harmonizedSystemCode20 countryCode21 }22 }23 }24 }25 userErrors {26 message27 }28 }29 }`,30 {31 variables: {32 "id": "gid://shopify/InventoryItem/43729076",33 "input": {34 "cost": 145.89,35 "tracked": false,36 "countryCodeOfOrigin": "US",37 "provinceCodeOfOrigin": "OR",38 "harmonizedSystemCode": "621710",39 "countryHarmonizedSystemCodes": [40 {41 "harmonizedSystemCode": "6217109510",42 "countryCode": "CA"43 }44 ]45 }46 },47 },48);4950const data = await response.json();51
mutation inventoryItemUpdate($id: ID!, $input: InventoryItemInput!) {
inventoryItemUpdate(id: $id, input: $input) {
inventoryItem {
id
unitCost {
amount
}
tracked
countryCodeOfOrigin
provinceCodeOfOrigin
harmonizedSystemCode
countryHarmonizedSystemCodes(first: 1) {
edges {
node {
harmonizedSystemCode
countryCode
}
}
}
}
userErrors {
message
}
}
}
curl -X POST \
https://your-development-store.myshopify.com/admin/api/2025-04/graphql.json \
-H 'Content-Type: application/json' \
-H 'X-Shopify-Access-Token: {access_token}' \
-d '{
"query": "mutation inventoryItemUpdate($id: ID!, $input: InventoryItemInput!) { inventoryItemUpdate(id: $id, input: $input) { inventoryItem { id unitCost { amount } tracked countryCodeOfOrigin provinceCodeOfOrigin harmonizedSystemCode countryHarmonizedSystemCodes(first: 1) { edges { node { harmonizedSystemCode countryCode } } } } userErrors { message } } }",
"variables": {
"id": "gid://shopify/InventoryItem/43729076",
"input": {
"cost": 145.89,
"tracked": false,
"countryCodeOfOrigin": "US",
"provinceCodeOfOrigin": "OR",
"harmonizedSystemCode": "621710",
"countryHarmonizedSystemCodes": [
{
"harmonizedSystemCode": "6217109510",
"countryCode": "CA"
}
]
}
}
}'
const { admin } = await authenticate.admin(request);
const response = await admin.graphql(
`#graphql
mutation inventoryItemUpdate($id: ID!, $input: InventoryItemInput!) {
inventoryItemUpdate(id: $id, input: $input) {
inventoryItem {
id
unitCost {
amount
}
tracked
countryCodeOfOrigin
provinceCodeOfOrigin
harmonizedSystemCode
countryHarmonizedSystemCodes(first: 1) {
edges {
node {
harmonizedSystemCode
countryCode
}
}
}
}
userErrors {
message
}
}
}`,
{
variables: {
"id": "gid://shopify/InventoryItem/43729076",
"input": {
"cost": 145.89,
"tracked": false,
"countryCodeOfOrigin": "US",
"provinceCodeOfOrigin": "OR",
"harmonizedSystemCode": "621710",
"countryHarmonizedSystemCodes": [
{
"harmonizedSystemCode": "6217109510",
"countryCode": "CA"
}
]
}
},
},
);
const data = await response.json();
const client = new shopify.clients.Graphql({session});
const data = await client.query({
data: {
"query": `mutation inventoryItemUpdate($id: ID!, $input: InventoryItemInput!) {
inventoryItemUpdate(id: $id, input: $input) {
inventoryItem {
id
unitCost {
amount
}
tracked
countryCodeOfOrigin
provinceCodeOfOrigin
harmonizedSystemCode
countryHarmonizedSystemCodes(first: 1) {
edges {
node {
harmonizedSystemCode
countryCode
}
}
}
}
userErrors {
message
}
}
}`,
"variables": {
"id": "gid://shopify/InventoryItem/43729076",
"input": {
"cost": 145.89,
"tracked": false,
"countryCodeOfOrigin": "US",
"provinceCodeOfOrigin": "OR",
"harmonizedSystemCode": "621710",
"countryHarmonizedSystemCodes": [
{
"harmonizedSystemCode": "6217109510",
"countryCode": "CA"
}
]
}
},
},
});
session = ShopifyAPI::Auth::Session.new(
shop: "your-development-store.myshopify.com",
access_token: access_token
)
client = ShopifyAPI::Clients::Graphql::Admin.new(
session: session
)
query = <<~QUERY
mutation inventoryItemUpdate($id: ID!, $input: InventoryItemInput!) {
inventoryItemUpdate(id: $id, input: $input) {
inventoryItem {
id
unitCost {
amount
}
tracked
countryCodeOfOrigin
provinceCodeOfOrigin
harmonizedSystemCode
countryHarmonizedSystemCodes(first: 1) {
edges {
node {
harmonizedSystemCode
countryCode
}
}
}
}
userErrors {
message
}
}
}
QUERY
variables = {
"id": "gid://shopify/InventoryItem/43729076",
"input": {
"cost": 145.89,
"tracked": false,
"countryCodeOfOrigin": "US",
"provinceCodeOfOrigin": "OR",
"harmonizedSystemCode": "621710",
"countryHarmonizedSystemCodes": [{"harmonizedSystemCode"=>"6217109510", "countryCode"=>"CA"}]
}
}
response = client.query(query: query, variables: variables)
Input variables
JSON1{2 "id": "gid://shopify/InventoryItem/43729076",3 "input": {4 "cost": 145.89,5 "tracked": false,6 "countryCodeOfOrigin": "US",7 "provinceCodeOfOrigin": "OR",8 "harmonizedSystemCode": "621710",9 "countryHarmonizedSystemCodes": [10 {11 "harmonizedSystemCode": "6217109510",12 "countryCode": "CA"13 }14 ]15 }16}
Response
JSON1{2 "inventoryItemUpdate": {3 "inventoryItem": {4 "id": "gid://shopify/InventoryItem/43729076",5 "unitCost": {6 "amount": "145.89"7 },8 "tracked": false,9 "countryCodeOfOrigin": "US",10 "provinceCodeOfOrigin": "OR",11 "harmonizedSystemCode": "621710",12 "countryHarmonizedSystemCodes": {13 "edges": [14 {15 "node": {16 "harmonizedSystemCode": "6217109510",17 "countryCode": "CA"18 }19 }20 ]21 }22 },23 "userErrors": []24 }25}