Go / WAC API / Get Bucket Utilizations
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("Authorization","{{WACApiKey}}")
sbResponseBody := chilkat.NewStringBuilder()
success = http.QuickGetSb("https://domain.com/v1/accounts/:AcctNum/utilizations/buckets",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 "Authorization: {{WACApiKey}}"
https://domain.com/v1/accounts/:AcctNum/utilizations/buckets
Postman Collection Item JSON
{
"name": "Get Bucket Utilizations",
"request": {
"auth": {
"type": "noauth"
},
"method": "GET",
"header": [
{
"key": "Authorization",
"value": "{{WACApiKey}}",
"type": "text"
}
],
"url": {
"raw": "{{baseURL}}/v1/accounts/:AcctNum/utilizations/buckets",
"host": [
"{{baseURL}}"
],
"path": [
"v1",
"accounts",
":AcctNum",
"utilizations",
"buckets"
],
"query": [
{
"key": "from",
"value": "2022-11-18",
"disabled": true
},
{
"key": "to",
"value": "2022-11-19",
"disabled": true
}
],
"variable": [
{
"key": "AcctNum",
"value": ""
}
]
}
},
"response": [
]
}