Chilkat Online Tools

Swift3 / Microsoft Graph / Create retentionEvent

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.

    // {
    //   "displayName": "{{eventDisplayName}}",
    //   "description": "{{eventDescription}}",
    //   "eventQueries": [
    //     {
    //       "queryType": "files",
    //       "query": "12345"
    //     },
    //     {
    //       "queryType": "messages",
    //       "query": "test"
    //     }
    //   ],
    //   "eventTriggerDateTime": "2022-09-14T00:00:00Z",
    //   "retentionEventType@odata.bind": "https://graph.microsoft.com/beta/security/triggerTypes/retentionEventTypes/{{retentionEventTypeId}}"
    // }

    let json = CkoJsonObject()!
    json.update("displayName", value: "{{eventDisplayName}}")
    json.update("description", value: "{{eventDescription}}")
    json.update("eventQueries[0].queryType", value: "files")
    json.update("eventQueries[0].query", value: "12345")
    json.update("eventQueries[1].queryType", value: "messages")
    json.update("eventQueries[1].query", value: "test")
    json.update("eventTriggerDateTime", value: "2022-09-14T00:00:00Z")
    json.update("\"retentionEventType@odata.bind\"", value: "https://graph.microsoft.com/beta/security/triggerTypes/retentionEventTypes/{{retentionEventTypeId}}")

    // Adds the "Authorization: Bearer <access_token>" header.
    http.authToken = "<access_token>"

    var resp: CkoHttpResponse? = http.postJson3("https://graph.microsoft.com/beta/security/triggers/retentionEvents", contentType: "application/json", json: json)
    if http.lastMethodSuccess == false {
        print("\(http.lastErrorText!)")
        return
    }

    print("\(resp!.statusCode.intValue)")
    print("\(resp!.bodyStr!)")
    resp = nil

}

Curl Command

curl -X POST
	-H "Authorization: Bearer <access_token>"
	-d '{
    "displayName": "{{eventDisplayName}}",
    "description": "{{eventDescription}}",
    "eventQueries": [
        {
            "queryType": "files",
            "query": "12345"
        },
        {
            "queryType": "messages",
            "query": "test"
        }
    ],
    "eventTriggerDateTime": "2022-09-14T00:00:00Z",
    "retentionEventType@odata.bind": "https://graph.microsoft.com/beta/security/triggerTypes/retentionEventTypes/{{retentionEventTypeId}}" 
}'
https://graph.microsoft.com/beta/security/triggers/retentionEvents

Postman Collection Item JSON

{
  "name": "Create retentionEvent",
  "event": [
    {
      "listen": "test",
      "script": {
        "exec": [
          "var json = JSON.parse(responseBody);",
          "postman.setEnvironmentVariable(\"retentionEventId\", json.id);"
        ],
        "type": "text/javascript"
      }
    }
  ],
  "request": {
    "method": "POST",
    "header": [
    ],
    "body": {
      "mode": "raw",
      "raw": "{\n    \"displayName\": \"{{eventDisplayName}}\",\n    \"description\": \"{{eventDescription}}\",\n    \"eventQueries\": [\n        {\n            \"queryType\": \"files\",\n            \"query\": \"12345\"\n        },\n        {\n            \"queryType\": \"messages\",\n            \"query\": \"test\"\n        }\n    ],\n    \"eventTriggerDateTime\": \"2022-09-14T00:00:00Z\",\n    \"retentionEventType@odata.bind\": \"https://graph.microsoft.com/beta/security/triggerTypes/retentionEventTypes/{{retentionEventTypeId}}\" \n}",
      "options": {
        "raw": {
          "language": "json"
        }
      }
    },
    "url": {
      "raw": "https://graph.microsoft.com/beta/security/triggers/retentionEvents",
      "protocol": "https",
      "host": [
        "graph",
        "microsoft",
        "com"
      ],
      "path": [
        "beta",
        "security",
        "triggers",
        "retentionEvents"
      ]
    }
  },
  "response": [
  ]
}