Missing Order Status URL In Orders GraphQL API

Missing Order Status URL In Orders GraphQL API

hertzbit
Visitor
1 0 1

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

Replies 3 (3)

waynedunkley
Shopify Partner
2 0 2
nimblestack
Shopify Partner
1 0 1

This thread is archived, is there any way to get access to this?

 

kkang
Shopify Partner
8 1 2

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
          }
        }
      }
    }
'