Chilkat Online Tools

delphiAx / WAC API / Read Control Account Utilizations

Back to Collection Items

var
http: TChilkatHttp;
success: Integer;
queryParams: TChilkatJsonObject;
resp: IChilkatHttpResponse;

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

http := TChilkatHttp.Create(Self);

queryParams := TChilkatJsonObject.Create(Self);
queryParams.UpdateString('from','2023-01-01');
queryParams.UpdateString('to','2023-07-25');

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

resp := http.QuickRequestParams('GET','https://domain.com/v1/control-account/utilizations',queryParams.ControlInterface);
if (http.LastMethodSuccess = 0) then
  begin
    Memo1.Lines.Add(http.LastErrorText);
    Exit;
  end;

Memo1.Lines.Add(IntToStr(resp.StatusCode));
Memo1.Lines.Add(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": [
  ]
}