Back to Collection Items
// This example assumes the Chilkat API to have been previously unlocked.
// See Global_Ref.html">Global Unlock Sample for sample code.
http := chilkat.NewHttp()
var success bool
http.SetRequestHeader("X-ANYPNT-ENV-ID","{{environment_id}}")
// Adds the "Authorization: Bearer {{token}}" header.
http.SetAuthToken("{{token}}")
http.SetRequestHeader("X-ANYPNT-ORG-ID","{{organization_id}}")
sbResponseBody := chilkat.NewStringBuilder()
success = http.QuickGetSb("https://monitoring.anypoint.mulesoft.com/monitoring/archive/api/v1/organizations",sbResponseBody)
if success == false {
fmt.Println(http.LastErrorText())
http.DisposeHttp()
sbResponseBody.DisposeStringBuilder()
return
}
jResp := chilkat.NewJsonObject()
jResp.LoadSb(sbResponseBody)
jResp.SetEmitCompact(false)
fmt.Println("Response Body:")
fmt.Println(*jResp.Emit())
respStatusCode := http.LastStatus()
fmt.Println("Response Status Code = ", respStatusCode)
if respStatusCode >= 400 {
fmt.Println("Response Header:")
fmt.Println(http.LastHeader())
fmt.Println("Failed.")
http.DisposeHttp()
sbResponseBody.DisposeStringBuilder()
jResp.DisposeJsonObject()
return
}
// 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
var id *string = new(string)
i := 0
count_i := jResp.SizeOfArray("resources")
for i < count_i {
jResp.SetI(i)
id = jResp.StringOf("resources[i].id")
i = i + 1
}
http.DisposeHttp()
sbResponseBody.DisposeStringBuilder()
jResp.DisposeJsonObject()
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": ""
}
]
}