No content to show
User Activity
01-19-2024
I am new to Shopify, with referrence of Dev. docs an app developed using .Net Framework and installed it in partner api to get total products count with the client request uri as "xxxx.myshopify.com/admin/api/2023-10/products/count.json".There is no ...
Here the code, please suggest to get the products count. var client = new RestClient("https://xxx.myshopify.com/");var request = new RestRequest("/admin/api/2023-10/products/count.json", Method.Get);request.RequestFormat = DataFormat.Json;request.Ad...