lianja / WAC API / Get Utilizations for a Specific Bucket
Back to Collection Items
// This example assumes the Chilkat API to have been previously unlocked.
// See Global Unlock Sample for sample code.
loHttp = createobject("CkHttp")
loHttp.SetRequestHeader("Authorization","{{WACApiKey}}")
loSbResponseBody = createobject("CkStringBuilder")
llSuccess = loHttp.QuickGetSb("https://domain.com/v1/accounts/:AcctNum/utilizations/buckets/:bucket",loSbResponseBody)
if (llSuccess = .F.) then
? loHttp.LastErrorText
release loHttp
release loSbResponseBody
return
endif
? "Response status code = " + str(loHttp.LastStatus)
? loSbResponseBody.GetAsString()
release loHttp
release loSbResponseBody
Curl Command
curl -X GET
-H "Authorization: {{WACApiKey}}"
https://domain.com/v1/accounts/:AcctNum/utilizations/buckets/:bucket
Postman Collection Item JSON
{
"name": "Get Utilizations for a Specific Bucket",
"request": {
"method": "GET",
"header": [
{
"key": "Authorization",
"value": "{{WACApiKey}}",
"type": "text"
}
],
"url": {
"raw": "{{baseURL}}/v1/accounts/:AcctNum/utilizations/buckets/:bucket",
"host": [
"{{baseURL}}"
],
"path": [
"v1",
"accounts",
":AcctNum",
"utilizations",
"buckets",
":bucket"
],
"variable": [
{
"key": "AcctNum",
"value": null
},
{
"key": "bucket",
"value": null
}
]
}
},
"response": [
]
}