Chilkat Online Tools

C# / WAC API / Read Control Account Utilizations

Back to Collection Items

// This example assumes the Chilkat API to have been previously unlocked.
// See Global Unlock Sample for sample code.

Chilkat.Http http = new Chilkat.Http();
bool success;

Chilkat.JsonObject queryParams = new Chilkat.JsonObject();
queryParams.UpdateString("from","2023-01-01");
queryParams.UpdateString("to","2023-07-25");

http.SetRequestHeader("Authorization","{{WACApiKey}}");

Chilkat.HttpResponse resp = http.QuickRequestParams("GET","https://domain.com/v1/control-account/utilizations",queryParams);
if (http.LastMethodSuccess == false) {
    Debug.WriteLine(http.LastErrorText);
    return;
}

Debug.WriteLine(Convert.ToString(resp.StatusCode));
Debug.WriteLine(resp.BodyStr);

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": [
  ]
}