Perl / WAC API / Get Utilizations for a Specific Bucket
Back to Collection Items
use chilkat();
# This example assumes the Chilkat API to have been previously unlocked.
# See Global Unlock Sample for sample code.
$http = chilkat::CkHttp->new();
$http->SetRequestHeader("Authorization","{{WACApiKey}}");
$sbResponseBody = chilkat::CkStringBuilder->new();
$success = $http->QuickGetSb("https://domain.com/v1/accounts/:AcctNum/utilizations/buckets/:bucket",$sbResponseBody);
if ($success == 0) {
print $http->lastErrorText() . "\r\n";
exit;
}
print "Response status code = " . $http->get_LastStatus() . "\r\n";
print $sbResponseBody->getAsString() . "\r\n";
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": [
]
}