Chilkat Online Tools

Perl / WAC API / Read Control Account Utilizations

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();

$queryParams = chilkat::CkJsonObject->new();
$queryParams->UpdateString("from","2023-01-01");
$queryParams->UpdateString("to","2023-07-25");

$http->SetRequestHeader("Authorization","{{WACApiKey}}");

# resp is a HttpResponse
$resp = $http->QuickRequestParams("GET","https://domain.com/v1/control-account/utilizations",$queryParams);
if ($http->get_LastMethodSuccess() == 0) {
    print $http->lastErrorText() . "\r\n";
    exit;
}

print $resp->get_StatusCode() . "\r\n";
print $resp->bodyStr() . "\r\n";

Curl Command

curl -G -d "from=2023-01-01"
	-d "to=2023-07-25"
	-H "Authorization: {{WACApiKey}}"
https://domain.com/v1/control-account/utilizations

Postman Collection Item JSON

{
  "name": "Read Control Account Utilizations",
  "request": {
    "method": "GET",
    "header": [
      {
        "key": "Authorization",
        "value": "{{WACApiKey}}",
        "type": "text"
      }
    ],
    "url": {
      "raw": "{{baseURL}}/v1/control-account/utilizations?from=2023-01-01&to=2023-07-25",
      "host": [
        "{{baseURL}}"
      ],
      "path": [
        "v1",
        "control-account",
        "utilizations"
      ],
      "query": [
        {
          "key": "from",
          "value": "2023-01-01"
        },
        {
          "key": "to",
          "value": "2023-07-25"
        }
      ]
    }
  },
  "response": [
  ]
}