Hi Everyone,
I want active sale (subscription ) data like no of active subscription and no plan actives with total amount.
But i can find any reference.
https://shopify.dev/docs/api/partner
here sample code
curl -X POST \
https://partners.shopify.com/{organization_id}/api/2021-07/graphql.json \
-H 'Content-Type: application/graphql' \
-H 'X-Shopify-Access-Token: {partner_access_token}' \
-d 'query {
currentAppInstallation {
id
appId
activeSubscriptions {
edges {
node {
id
name
status
}
}
}
}
}'