phpExt / WAC API / Get Region Utilizations for Sub-Account
Back to Collection Items
<?php
include("chilkat.php");
// Use "chilkat_9_5_0.php" for versions of Chilkat < 10.0.0
// This example assumes the Chilkat API to have been previously unlocked.
// See Global Unlock Sample for sample code.
$http = new CkHttp();
$queryParams = new CkJsonObject();
$queryParams->UpdateString('includeRegionalUtilizations','true');
$http->SetRequestHeader('Authorization','{{WACApiKey}}');
// resp is a CkHttpResponse
$resp = $http->QuickRequestParams('GET','https://domain.com/v1/accounts/:AcctNum/utilizations',$queryParams);
if ($http->get_LastMethodSuccess() == false) {
print $http->lastErrorText() . "\n";
exit;
}
print $resp->get_StatusCode() . "\n";
print $resp->bodyStr() . "\n";
?>
Curl Command
curl -G -d "includeRegionalUtilizations=true"
-H "Authorization: {{WACApiKey}}"
https://domain.com/v1/accounts/:AcctNum/utilizations
Postman Collection Item JSON
{
"name": "Get Region Utilizations for Sub-Account",
"protocolProfileBehavior": {
"disableBodyPruning": true
},
"request": {
"method": "GET",
"header": [
{
"key": "Authorization",
"value": "{{WACApiKey}}",
"type": "text"
}
],
"body": {
"mode": "raw",
"raw": "",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{baseURL}}/v1/accounts/:AcctNum/utilizations?includeRegionalUtilizations=true",
"host": [
"{{baseURL}}"
],
"path": [
"v1",
"accounts",
":AcctNum",
"utilizations"
],
"query": [
{
"key": "includeRegionalUtilizations",
"value": "true"
}
],
"variable": [
{
"key": "AcctNum",
"value": ""
}
]
}
},
"response": [
]
}