I am trying to run an API query through postman and it is returning the following invalid API key/password error.
I am wondering if it is an issue with the url structure. The structure used is:
Can anyone assist?
I am trying to run an API query through postman and it is returning the following invalid API key/password error.
I am wondering if it is an issue with the url structure. The structure used is:
Can anyone assist?
Hi @aperkins ![]()
Iād recommend using cURL to check if the access token is valid:
curl -X POST \
'https://{{SHOP}}.myshopify.com/admin/api/2022-10/graphql.json' \
-H 'Content-Type: application/json' \
-H 'X-Shopify-Access-Token: {{TOKEN}}' \
-d '{"query": "{ app { id } }"}'
Hope that helps!
Thanks, Umiko.
I believe we have it sorted out now.