Back to Collection Items
func chilkatTest() {
// This example assumes the Chilkat API to have been previously unlocked.
// See Global Unlock Sample for sample code.
let http = CkoHttp()!
var success: Bool
// Use this online tool to generate code from sample JSON: Generate Code to Create JSON
// The following JSON is sent in the request body.
// {
// "name": "Low CPU usage",
// "severity": "WARNING",
// "actions": [
// {
// "type": "email",
// "content": "Hello,\nYou are receiving this alert because:\nThe application ${resource} is now in an ${state} state, based on the condition 'CPU ${operator} ${value}%.",
// "subject": "${severity}: CPU usage ${state}",
// "emails": [
// "angel.alberici+testalerts@mulesoft.com",
// "angel.alberici@mulesoft.com"
// ]
// }
// ],
// "condition": {
// "operator": "LESS_THAN",
// "value": 50,
// "periodCount": 1,
// "resourceType": "cloudhub-application",
// "type": "cpu",
// "periodMins": 1,
// "resources": [
// "*"
// ]
// }
// }
let json = CkoJsonObject()!
json.update("name", value: "Low CPU usage")
json.update("severity", value: "WARNING")
json.update("actions[0].type", value: "email")
json.update("actions[0].content", value: "Hello,\nYou are receiving this alert because:\nThe application ${resource} is now in an ${state} state, based on the condition 'CPU ${operator} ${value}%.")
json.update("actions[0].subject", value: "${severity}: CPU usage ${state}")
json.update("actions[0].emails[0]", value: "angel.alberici+testalerts@mulesoft.com")
json.update("actions[0].emails[1]", value: "angel.alberici@mulesoft.com")
json.update("condition.operator", value: "LESS_THAN")
json.updateInt("condition.value", value: 50)
json.updateInt("condition.periodCount", value: 1)
json.update("condition.resourceType", value: "cloudhub-application")
json.update("condition.type", value: "cpu")
json.updateInt("condition.periodMins", value: 1)
json.update("condition.resources[0]", value: "*")
http.setRequestHeader("X-ANYPNT-ENV-ID", value: "{{environment_id}}")
// Adds the "Authorization: Bearer {{token}}" header.
http.authToken = "{{token}}"
http.setRequestHeader("X-ANYPNT-ORG-ID", value: "{{organization_id}}")
let sbRequestBody = CkoStringBuilder()!
json.emitSb(sbRequestBody)
var resp: CkoHttpResponse? = http.pTextSb("PUT", url: "https://anypoint.mulesoft.com/armui/api/v1/alerts/cloudhub/02213013-10f2-4bbb-b399-718c0a543e18", textData: sbRequestBody, charset: "utf-8", contentType: "application/json", md5: false, gzip: false)
if http.lastMethodSuccess == false {
print("\(http.lastErrorText!)")
return
}
let sbResponseBody = CkoStringBuilder()!
resp!.getBodySb(sbResponseBody)
let jResp = CkoJsonObject()!
jResp.loadSb(sbResponseBody)
jResp.emitCompact = false
print("Response Body:")
print("\(jResp.emit()!)")
var respStatusCode: Int = resp!.statusCode.intValue
print("Response Status Code = \(respStatusCode)")
if respStatusCode >= 400 {
print("Response Header:")
print("\(resp!.header!)")
print("Failed.")
resp = nil
return
}
resp = nil
// Sample JSON response:
// (Sample code for parsing the JSON response is shown below)
// {
// "id": 2312,
// "timeCreated": 342423432142342,
// "timeUpdated": 342423432154342,
// "severity": "CRITICAL",
// "description": "Notify when one server of cluster 45 went down",
// "enabled": true,
// "action": {
// "notification": {
// "recipients": [
// "alex.tiavo",
// "greg.kio"
// ]
// }
// },
// "condition": {
// "resourceType": "CLUSTER",
// "resources": [
// 45
// ],
// "event": "DISCONNECTED"
// }
// }
// Sample code for parsing the JSON response...
// Use this online tool to generate parsing code from sample JSON: Generate JSON Parsing Code
var strVal: String?
var intVal: Int
var id: Int = jResp.int(of: "id").intValue
var timeCreated: Int = jResp.int(of: "timeCreated").intValue
var timeUpdated: Int = jResp.int(of: "timeUpdated").intValue
var severity: String? = jResp.string(of: "severity")
var description: String? = jResp.string(of: "description")
var enabled: Bool = jResp.bool(of: "enabled")
var ResourceType: String? = jResp.string(of: "condition.resourceType")
var v_Event: String? = jResp.string(of: "condition.event")
var i: Int = 0
var count_i: Int = jResp.size(ofArray: "action.notification.recipients").intValue
while i < count_i {
jResp.i = i
strVal = jResp.string(of: "action.notification.recipients[i]")
i = i + 1
}
i = 0
count_i = jResp.size(ofArray: "condition.resources").intValue
while i < count_i {
jResp.i = i
intVal = jResp.int(of: "condition.resources[i]").intValue
i = i + 1
}
}
Curl Command
curl -X PUT
-H "X-ANYPNT-ENV-ID: {{environment_id}}"
-H "X-ANYPNT-ORG-ID: {{organization_id}}"
-H "Authorization: Bearer {{token}}"
-d '{
"name": "Low CPU usage",
"severity": "WARNING",
"actions": [
{
"type": "email",
"content": "Hello,\nYou are receiving this alert because:\nThe application ${resource} is now in an ${state} state, based on the condition \'CPU ${operator} ${value}%.",
"subject": "${severity}: CPU usage ${state}",
"emails": [
"angel.alberici+testalerts@mulesoft.com",
"angel.alberici@mulesoft.com"
]
}
],
"condition": {
"operator": "LESS_THAN",
"value": 50,
"periodCount": 1,
"resourceType": "cloudhub-application",
"type": "cpu",
"periodMins": 1,
"resources": [
"*"
]
}
}'
https://anypoint.mulesoft.com/armui/api/v1/alerts/cloudhub/02213013-10f2-4bbb-b399-718c0a543e18
Postman Collection Item JSON
{
"name": "Update alert by id",
"request": {
"method": "PUT",
"header": [
{
"description": "(Required) Identifier of the environment where the api user is currently working.",
"key": "X-ANYPNT-ENV-ID",
"value": "{{environment_id}}"
},
{
"description": "(Required) Identifier of the sub org where the api user is currently working.",
"key": "X-ANYPNT-ORG-ID",
"value": "{{organization_id}}"
},
{
"key": "Authorization",
"value": "Bearer {{token}}",
"type": "text"
}
],
"body": {
"mode": "raw",
"raw": "{\n \"name\": \"Low CPU usage\",\n \"severity\": \"WARNING\",\n \"actions\": [\n {\n \"type\": \"email\",\n \"content\": \"Hello,\\nYou are receiving this alert because:\\nThe application ${resource} is now in an ${state} state, based on the condition 'CPU ${operator} ${value}%.\",\n \"subject\": \"${severity}: CPU usage ${state}\",\n \"emails\": [\n \"angel.alberici+testalerts@mulesoft.com\",\n \"angel.alberici@mulesoft.com\"\n ]\n }\n ],\n \"condition\": {\n \"operator\": \"LESS_THAN\",\n \"value\": 50,\n \"periodCount\": 1,\n \"resourceType\": \"cloudhub-application\",\n \"type\": \"cpu\",\n \"periodMins\": 1,\n \"resources\": [\n \"*\"\n ]\n }\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "https://anypoint.mulesoft.com/armui/api/v1/alerts/cloudhub/02213013-10f2-4bbb-b399-718c0a543e18",
"protocol": "https",
"host": [
"anypoint",
"mulesoft",
"com"
],
"path": [
"armui",
"api",
"v1",
"alerts",
"cloudhub",
"02213013-10f2-4bbb-b399-718c0a543e18"
]
}
},
"response": [
{
"name": "Untitled Example",
"originalRequest": {
"method": "PATCH",
"header": [
{
"description": "(Required) Identifier of the environment where the api user is currently working.",
"key": "X-ANYPNT-ENV-ID",
"value": "pariatur magna in id esse"
},
{
"description": "(Required) Identifier of the sub org where the api user is currently working.",
"key": "X-ANYPNT-ORG-ID",
"value": "pariatur magna in id esse"
}
],
"url": {
"raw": "{{baseUrl}}/alerts/:alertId",
"host": [
"{{baseUrl}}"
],
"path": [
"alerts",
":alertId"
],
"variable": [
{
"key": "alertId"
}
]
}
},
"status": "Accepted",
"code": 202,
"_postman_previewlanguage": "json",
"header": [
{
"key": "Content-Type",
"value": "application/json"
}
],
"cookie": [
],
"body": "{\n \"id\": 2312,\n \"timeCreated\": 342423432142342,\n \"timeUpdated\": 342423432154342,\n \"severity\": \"CRITICAL\",\n \"description\": \"Notify when one server of cluster 45 went down\",\n \"enabled\": true,\n \"action\": {\n \"notification\": {\n \"recipients\": [\n \"alex.tiavo\",\n \"greg.kio\"\n ]\n }\n },\n \"condition\": {\n \"resourceType\": \"CLUSTER\",\n \"resources\": [\n 45\n ],\n \"event\": \"DISCONNECTED\"\n }\n}"
}
]
}