Skip to main content
POST
/
subscriptions
/
cp
/
api
/
customer-account-api
/
graphql
Proxy GraphQL queries to Shopify Customer Account API
curl --request POST \
  --url https://www.myshop.com/apps/subscriptions/cp/api/customer-account-api/graphql \
  --header 'Content-Type: application/json' \
  --data '
{
  "query": "query { customer { id emailAddress { emailAddress } } }",
  "variables": {}
}
'
{
  "data": {
    "customer": {
      "id": "gid://shopify/Customer/123",
      "emailAddress": {
        "emailAddress": "customer@example.com"
      }
    }
  }
}

Documentation Index

Fetch the complete documentation index at: https://appstleinc-aeca3e0a.mintlify.app/llms.txt

Use this file to discover all available pages before exploring further.

Body

application/json

GraphQL query and optional variables

query
string
variables
object

Response

GraphQL query executed successfully