Shopify API: How to count all orders using Postman

Shopify API 2024: How to count all orders using Postman

Are you the owner, and Do you want to count all orders from your stores? This article is for you. Beehexa will show you how to count all orders using Postman with any status. It will help you know the order quantity with each status. Detect data discrepancies, if any. 

Now, let’s dive into the article to know how to count all orders in Shopify API using Postman. 

If this is the first time you make a call in the Postman, you must generate API credentials from the Shopify admin

Generate API Credentials From Shopify Admin

Follow the process of How to build a custom app for Shopify in 2022? to know how to access Shopify API. 

     

      • After creating an app, you must assign “Orders” scopes to the admin API scopes. 

      • Remember the Admin API access token and the API key to count all orders in the Postman. 

    Now, we will take the first call: Count all open orders

    Count All Open Orders

       

        • Log in to your Postman and create a new workspace

        • Create a new GET with this URL:

      https://{API_key}:{admin_API_access_token}@{shop}.myshopify.com/admin/api/{api-version}/{resource}

         

          1. {API_key} – The API key that you generated.

          1. {admin_API_access_token} – The admin API access token that you generated.

          1. {shop} – The name of your development store.

          1. {api-version} – The supported API version that you want to use.

          1. {resource} – A resource endpoint from the REST Admin API.

        Or you can copy this example, remember change {resource} to {orders/count.json?status=open}:

        https://ed86d512a2c95387ffa25f67074a222b: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@hexasync.myshopify.com/admin/api/2021-10/orders/count.json?status=open

        Note: String = open, you can use either word to call the command. It will return the same result as the number of open orders.

           

            • Paste the URL above.

          get all open orders

          Then click on send

          Response: The API will return all open orders count. 

          {
              "count": 225
          }

          the open orders count

          Shopify Connector and Profile arrow Magento
          Shopify Magento Integration
          Shopify Connector and Profile arrow Salesforce
          Shopify Salesforce Integration
          Shopify Connector and Profile arrow Pipedrive
          Shopify Pipedrive Integration
          Shopify Connector and Profile arrow Clover POS
          Shopify Clover-pos Integration

          Count All Closed Orders

          In the second call, you change the status of the orders you want to get. In this case, we will change the status from open to closed. You can read Shopify API – How To Close An Order Using Postman blog to understand what closed orders are?.

             

              • Log in to your Postman and create a new workspace

              • Create a new GET with this URL:

            https://{API_key}:{admin_API_access_token}@{shop}.myshopify.com/admin/api/{api-version}/{resource}

               

                1. {API_key} – The API key that you generated.

                1. {admin_API_access_token} – The admin API access token that you generated.

                1. {shop} – The name of your development store.

                1. {api-version} – The supported API version that you want to use.

                1. {resource} – A resource endpoint from the REST Admin API.

              Or you can copy this example, remember change {resource} to {orders/count.json?status=closed}:

              https://ed86d512a2c95387ffa25f67074a222b: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@hexasync.myshopify.com/admin/api/2021-10/orders/count.json?status=closed

                 

                  • Paste the URL above.

                count all closed orders

                Then click on send

                Response: The API will return all closed orders count. 

                {
                    "count": 36
                }

                the closed orders count

                Count All Orders Using Postman

                With the final call, you change the status of the orders you want to get. In this case, we will change the status from closed to any.

                This call will return all orders with any status, including open, closed, or canceled. 

                   

                    • Log in to your Postman and create a new workspace

                    • Create a new GET with this URL:

                  https://{API_key}:{admin_API_access_token}@{shop}.myshopify.com/admin/api/{api-version}/{resource}

                     

                      1. {API_key} – The API key that you generated.

                      1. {admin_API_access_token} – The admin API access token that you generated.

                      1. {shop} – The name of your development store.

                      1. {api-version} – The supported API version that you want to use.

                      1. {resource} – A resource endpoint from the REST Admin API.

                    Or you can copy this example, remember change {resource} to {orders/count.json?status=any}:

                    https://ed86d512a2c95387ffa25f67074a222b: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@hexasync.myshopify.com/admin/api/2021-10/orders/count.json?status=any

                       

                        • Paste the URL above.

                      count all orders

                      Then click on send
                      Response: The API will return all orders count.

                      {
                          "count": 262
                      }

                      all orders count

                      The above are all steps to count all orders using Postman with Shopify API. If you have any questions, please comment below or refer to our blog: What is an API?. Besides, you can see more Shopify API documentation in the developer docs.

                      If you still do not understand the tutorial’s content, you can watch the video below for a more overview.

                      https://youtu.be/1VZWiLUAYq4
                      Shopify API – How to count all orders using Postman

                      Hopefully, you can do it!