Chilkat Online Tools

delphiAx / WAC API / Get Region Utilizations for Sub-Account

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('includeRegionalUtilizations','true');

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

resp := http.QuickRequestParams('GET','https://domain.com/v1/accounts/:AcctNum/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 "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": [
  ]
}