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.ย
Table of Contents
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}
ย
-
- {API_key} โ The API key that you generated.
-
- {admin_API_access_token} โ The admin API access token that you generated.
-
- {shop} โ The name of your development store.
-
- {api-version} โ The supported API version that you want to use.
-
- {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:[email protected]/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.
Then click on send
Response: The API will return all open orders count.ย
{
"count": 225
}
Shopify Magento Integration
Shopify Salesforce Integration
Shopify Pipedrive 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}
ย
-
- {API_key} โ The API key that you generated.
-
- {admin_API_access_token} โ The admin API access token that you generated.
-
- {shop} โ The name of your development store.
-
- {api-version} โ The supported API version that you want to use.
-
- {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:[email protected]/admin/api/2021-10/orders/count.json?status=closed
ย
-
- Paste the URL above.
Then click on send
Response: The API will return all closed orders count.ย
{
"count": 36
}
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}
ย
-
- {API_key} โ The API key that you generated.
-
- {admin_API_access_token} โ The admin API access token that you generated.
-
- {shop} โ The name of your development store.
-
- {api-version} โ The supported API version that you want to use.
-
- {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:[email protected]/admin/api/2021-10/orders/count.json?status=any
ย
-
- Paste the URL above.
Then click on send
Response: The API will return all orders count.
{
"count": 262
}
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.
Hopefully, you can do it!