For discussing the development and usage of Checkout UI extensions, post-purchase extensions, web pixels, Customer Accounts UI extensions, and POS UI extensions
Hi,
I am getting Access Denied for running a graphql query.
Error: Access denied for deliveryCustomizations field. Required access: `read_delivery_customizations` access scope.
The required scope is set in the app. What is missing?
read_delivery_customizations
query {
deliveryCustomizations(first: 25) {
edges {
node {
title
id
metafields(first: 100) {
nodes {
id
namespace
key
value
}
}
}
}
}
}
Hi Jakehe,
I struggled with it for a bit too. Turns out it has nothing to do with the scope of your app. What you need to do is install again (i.e. update) your graphiQL app and include `read_delivery_customizations` (and `read_delivery_customizations`) permissions with it. Hope it helps.