productImageUpdate mutation
Updates an image of a product.
Required access
write_products
access scope.
On this page
Interactive example
This is an example mutation query. Use the embedded interactive tool below to edit the query.
Hint: use Ctrl + Space for autocompleting fields.
mutation productImageUpdate($productId: ID!, $image: ImageInput!) { productImageUpdate(productId: $productId, image: $image) {} } { “productId”: “Z2lkOi8vU2hvcGlmeS9FeGFtcGxlLzE=”, “image”: {} }
<font style="color:#1F61A0;">image</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
ImageInput fields
- altText (
[String](https://shopify.dev/docs/admin-api/graphql/reference/scalar#string-2021-01)
)
A word or phrase to share the nature or contents of an image. - id (
[ID](https://shopify.dev/docs/admin-api/graphql/reference/scalar#id-2021-01)
)
Globally unique identifier. - src (
[String](https://shopify.dev/docs/admin-api/graphql/reference/scalar#string-2021-01)
)
The URL of the image. May be a signed upload URL.
Return fields
- image (
[Image](https://shopify.dev/docs/admin-api/graphql/reference/common-objects/image)
)
Image updated.
- userErrors (
[[UserError!]!](https://shopify.dev/docs/admin-api/graphql/reference/usererror)
)
List of errors that occurred executing the mutation.