All things Shopify and commerce
We're moving the community! Starting July 7, the current community will be read-only for approx. 2 weeks. You can browse content, but posting will be temporarily unavailable. Learn more
Hey Shopify,
How can I get order status url field using Orders GraphQL API ? I checked the fields but I'm unable to find order status url in graphql api
Thanks & Regards
see this thread: https://community.shopify.com/c/shopify-apis-and-sdks/graphql-order-object-missing-order-status-url/...
It's been missing since 2019
This thread is archived, is there any way to get access to this?
You may try: statusPageUrl
For examples:
curl -X POST \
https://$shop.myshopify.com/admin/api/$api_version/graphql.json \
-H 'Content-Type: application/graphql' \
-H 'X-Shopify-Access-Token: '$shopify_token \
-d '
{
orders(first: 20, query:"updated_at:>2025-04-12T23:39:20Z") {
edges {
node {
id,
email,
statusPageUrl
}
}
}
}
'