Xojo / WAC API / Get Regional Utilizations for Control and Sub-Accounts
Back to Collection Items
// This example assumes the Chilkat API to have been previously unlocked.
// See Global Unlock Sample for sample code.
Dim http As New Chilkat.Http
Dim success As Boolean
Dim queryParams As New Chilkat.JsonObject
success = queryParams.UpdateString("includeRegionalUtilizations","true")
http.SetRequestHeader "Authorization","{{WACApiKey}}"
Dim resp As Chilkat.HttpResponse
resp = http.QuickRequestParams("GET","https://domain.com/v1/utilizations",queryParams)
If (http.LastMethodSuccess = False) Then
System.DebugLog(http.LastErrorText)
Return
End If
System.DebugLog(Str(resp.StatusCode))
System.DebugLog(resp.BodyStr)
Curl Command
curl -G -d "includeRegionalUtilizations=true"
-H "Authorization: {{WACApiKey}}"
https://domain.com/v1/utilizations
Postman Collection Item JSON
{
"name": "Get Regional Utilizations for Control and Sub-Accounts",
"request": {
"method": "GET",
"header": [
{
"key": "Authorization",
"value": "{{WACApiKey}}",
"type": "text"
}
],
"url": {
"raw": "{{baseURL}}/v1/utilizations?includeRegionalUtilizations=true",
"host": [
"{{baseURL}}"
],
"path": [
"v1",
"utilizations"
],
"query": [
{
"key": "includeRegionalUtilizations",
"value": "true"
}
]
}
},
"response": [
]
}