Go / Shopify / Get a count of all articles from a certain blog
Back to Collection Items
// This example assumes the Chilkat API to have been previously unlocked.
// See Global_Ref.html">Global Unlock Sample for sample code.
http := chilkat.NewHttp()
var success bool
http.SetRequestHeader("Content","<>")
sbResponseBody := chilkat.NewStringBuilder()
success = http.QuickGetSb("httpsDefaultParameterValue:DefaultParameterValue@DefaultParameterValue.myshopify.com/admin/blogs/62581763/articles/count.json",sbResponseBody)
if success == false {
fmt.Println(http.LastErrorText())
http.DisposeHttp()
sbResponseBody.DisposeStringBuilder()
return
}
fmt.Println("Response status code = ", http.LastStatus())
fmt.Println(*sbResponseBody.GetAsString())
http.DisposeHttp()
sbResponseBody.DisposeStringBuilder()
Curl Command
curl -X GET
-H "Content: <>"
httpsDefaultParameterValue:DefaultParameterValue@DefaultParameterValue.myshopify.com/admin/blogs/62581763/articles/count.json
Postman Collection Item JSON
{
"name": "Get a count of all articles from a certain blog",
"request": {
"method": "GET",
"header": [
{
"key": "Content",
"value": "<>"
}
],
"url": {
"raw": "{{baseUrl}}/admin/blogs/62581763/articles/count.json",
"host": [
"{{baseUrl}}"
],
"path": [
"admin",
"blogs",
"62581763",
"articles",
"count.json"
]
},
"description": "Get a count of all articles from a certain blog."
},
"response": [
]
}