Anchor to priceListUpdateprice
priceListUpdate
mutation
Requires access scope. Also: The user must have permission to create and edit catalogs.
Updates a price list. If you modify the currency, then any fixed prices set on the price list will be deleted.
Anchor to Arguments
Arguments
- •ID!required
The ID of the price list to update.
- Anchor to inputinput•Price
List requiredUpdate Input! The input data used to update the price list.
Was this section helpful?
Anchor to PriceListUpdatePayload returnsPriceListUpdatePayload returns
- Anchor to priceListprice•
List The updated price list.
- Anchor to userErrorsuser•
Errors [PriceList non-nullUser Error!]! The list of errors that occurred from executing the mutation.
Was this section helpful?
- Update a price list
- priceListUpdate reference
Examples
const { admin } = await authenticate.admin(request);
const response = await admin.graphql(
`#graphql
mutation priceListUpdate($id: ID!, $input: PriceListUpdateInput!) {
priceListUpdate(id: $id, input: $input) {
priceList {
id
parent {
adjustment {
type
value
}
}
}
userErrors {
message
field
code
}
}
}`,
{
variables: {
"id": "gid://shopify/PriceList/734173888",
"input": {
"parent": {
"adjustment": {
"value": 10,
mutation priceListUpdate($id: ID!, $input: PriceListUpdateInput!) {
priceListUpdate(id: $id, input: $input) {
priceList {
id
parent {
adjustment {
type
value
}
}
}
userErrors {
message
field
code
}
}
}
curl -X POST \
https://your-development-store.myshopify.com/admin/api/2024-04/graphql.json \
-H 'Content-Type: application/json' \
-H 'X-Shopify-Access-Token: {access_token}' \
-d '{
"query": "mutation priceListUpdate($id: ID!, $input: PriceListUpdateInput!) { priceListUpdate(id: $id, input: $input) { priceList { id parent { adjustment { type value } } } userErrors { message field code } } }",
"variables": {
"id": "gid://shopify/PriceList/734173888",
"input": {
"parent": {
"adjustment": {
"value": 10,
"type": "PERCENTAGE_INCREASE"
}
}
}
}
}'
const { admin } = await authenticate.admin(request);
const response = await admin.graphql(
`#graphql
mutation priceListUpdate($id: ID!, $input: PriceListUpdateInput!) {
priceListUpdate(id: $id, input: $input) {
priceList {
id
parent {
adjustment {
type
value
}
}
}
userErrors {
message
field
code
}
}
}`,
{
variables: {
"id": "gid://shopify/PriceList/734173888",
"input": {
"parent": {
"adjustment": {
"value": 10,
"type": "PERCENTAGE_INCREASE"
}
}
}
},
},
);
const data = await response.json();
const client = new shopify.clients.Graphql({session});
const data = await client.query({
data: {
"query": `mutation priceListUpdate($id: ID!, $input: PriceListUpdateInput!) {
priceListUpdate(id: $id, input: $input) {
priceList {
id
parent {
adjustment {
type
value
}
}
}
userErrors {
message
field
code
}
}
}`,
"variables": {
"id": "gid://shopify/PriceList/734173888",
"input": {
"parent": {
"adjustment": {
"value": 10,
"type": "PERCENTAGE_INCREASE"
}
}
}
},
},
});
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 priceListUpdate($id: ID!, $input: PriceListUpdateInput!) {
priceListUpdate(id: $id, input: $input) {
priceList {
id
parent {
adjustment {
type
value
}
}
}
userErrors {
message
field
code
}
}
}
QUERY
variables = {
"id": "gid://shopify/PriceList/734173888",
"input": {
"parent": {
"adjustment": {
"value": 10,
"type": "PERCENTAGE_INCREASE"
}
}
}
}
response = client.query(query: query, variables: variables)
Input variables
JSON{
"id": "gid://shopify/PriceList/734173888",
"input": {
"parent": {
"adjustment": {
"value": 10,
"type": "PERCENTAGE_INCREASE"
}
}
}
}
Response
JSON{
"priceListUpdate": {
"priceList": {
"id": "gid://shopify/PriceList/734173888",
"parent": {
"adjustment": {
"type": "PERCENTAGE_INCREASE",
"value": 10
}
}
},
"userErrors": []
}
}