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 ChilkatHttp
Dim success As Long
http.SetRequestHeader "X-ANYPNT-ENV-ID","{{environment_id}}"
' Adds the "Authorization: Bearer {{token}}" header.
http.AuthToken = "{{token}}"
http.SetRequestHeader "X-ANYPNT-ORG-ID","{{organization_id}}"
Dim sbResponseBody As New ChilkatStringBuilder
success = http.QuickGetSb("https://monitoring.anypoint.mulesoft.com/monitoring/archive/api/v1/organizations",sbResponseBody)
If (success = 0) Then
Debug.Print http.LastErrorText
Exit Sub
End If
Dim jResp As New ChilkatJsonObject
success = jResp.LoadSb(sbResponseBody)
jResp.EmitCompact = 0
Debug.Print "Response Body:"
Debug.Print jResp.Emit()
Dim respStatusCode As Long
respStatusCode = http.LastStatus
Debug.Print "Response Status Code = " & respStatusCode
If (respStatusCode >= 400) Then
Debug.Print "Response Header:"
Debug.Print http.LastHeader
Debug.Print "Failed."
Exit Sub
End If
' Sample JSON response:
' (Sample code for parsing the JSON response is shown below)
' {
' "resources": [
' {
' "id": "in incididu"
' },
' {
' "id": "cillum culpa"
' }
' ]
' }
' Sample code for parsing the JSON response...
' Use this online tool to generate parsing code from sample JSON: Generate JSON Parsing Code
Dim id As String
Dim i As Long
i = 0
Dim count_i As Long
count_i = jResp.SizeOfArray("resources")
Do While i < count_i
jResp.I = i
id = jResp.StringOf("resources[i].id")
i = i + 1
Loop
Curl Command
curl -X GET
-H "Authorization: Bearer {{token}}"
-H "X-ANYPNT-ORG-ID: {{organization_id}}"
-H "X-ANYPNT-ENV-ID: {{environment_id}}"
https://monitoring.anypoint.mulesoft.com/monitoring/archive/api/v1/organizations
Postman Collection Item JSON
{
"name": "/organizations",
"request": {
"method": "GET",
"header": [
{
"key": "Authorization",
"value": "Bearer {{token}}",
"type": "text"
},
{
"key": "X-ANYPNT-ORG-ID",
"value": "{{organization_id}}",
"type": "text"
},
{
"key": "X-ANYPNT-ENV-ID",
"value": "{{environment_id}}",
"type": "text"
}
],
"url": {
"raw": "https://monitoring.anypoint.mulesoft.com/monitoring/archive/api/v1/organizations",
"protocol": "https",
"host": [
"monitoring",
"anypoint",
"mulesoft",
"com"
],
"path": [
"monitoring",
"archive",
"api",
"v1",
"organizations"
]
},
"description": "Returns a list of organization identifiers for the organizations that have archived data. If this path contains no\ndata, then an empty list is returned.\n"
},
"response": [
{
"name": "Untitled Example",
"originalRequest": {
"method": "GET",
"header": [
],
"url": {
"raw": "{{baseUrl}}/organizations",
"host": [
"{{baseUrl}}"
],
"path": [
"organizations"
]
}
},
"status": "OK",
"code": 200,
"_postman_previewlanguage": "json",
"header": [
{
"key": "Content-Type",
"value": "application/json"
}
],
"cookie": [
],
"body": "{\n \"resources\": [\n {\n \"id\": \"in incididu\"\n },\n {\n \"id\": \"cillum culpa\"\n }\n ]\n}"
},
{
"name": "The client is sending more than the allowed number of requests per unit time",
"originalRequest": {
"method": "GET",
"header": [
],
"url": {
"raw": "{{baseUrl}}/organizations",
"host": [
"{{baseUrl}}"
],
"path": [
"organizations"
]
}
},
"status": "Too Many Requests",
"code": 429,
"_postman_previewlanguage": "text",
"header": [
{
"key": "Content-Type",
"value": "text/plain"
}
],
"cookie": [
],
"body": ""
},
{
"name": "The API service is temporarily unreachable. Please try again later. Contact support if problem persists.",
"originalRequest": {
"method": "GET",
"header": [
],
"url": {
"raw": "{{baseUrl}}/organizations",
"host": [
"{{baseUrl}}"
],
"path": [
"organizations"
]
}
},
"status": "Gateway Timeout",
"code": 504,
"_postman_previewlanguage": "text",
"header": [
{
"key": "Content-Type",
"value": "text/plain"
}
],
"cookie": [
],
"body": ""
}
]
}