Chilkat Online Tools

C / Microsoft Graph / Create retentionEvent

Back to Collection Items

#include <C_CkHttp.h>
#include <C_CkJsonObject.h>
#include <C_CkHttpResponse.h>

void ChilkatSample(void)
    {
    HCkHttp http;
    BOOL success;
    HCkJsonObject json;
    HCkHttpResponse resp;

    // This example assumes the Chilkat API to have been previously unlocked.
    // See Global Unlock Sample for sample code.

    http = CkHttp_Create();

    // 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}}"
    // }

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

    // Adds the "Authorization: Bearer <access_token>" header.
    CkHttp_putAuthToken(http,"<access_token>");

    resp = CkHttp_PostJson3(http,"https://graph.microsoft.com/beta/security/triggers/retentionEvents","application/json",json);
    if (CkHttp_getLastMethodSuccess(http) == FALSE) {
        printf("%s\n",CkHttp_lastErrorText(http));
        CkHttp_Dispose(http);
        CkJsonObject_Dispose(json);
        return;
    }

    printf("%d\n",CkHttpResponse_getStatusCode(resp));
    printf("%s\n",CkHttpResponse_bodyStr(resp));
    CkHttpResponse_Dispose(resp);


    CkHttp_Dispose(http);
    CkJsonObject_Dispose(json);

    }

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": [
  ]
}