DataFlex / Microsoft Graph / Create retentionEvent
Back to Collection Items
Use ChilkatAx-win32.pkg
Procedure Test
Handle hoHttp
Boolean iSuccess
Variant vJson
Handle hoJson
Variant vResp
Handle hoResp
String sTemp1
Integer iTemp1
Boolean bTemp1
// This example assumes the Chilkat API to have been previously unlocked.
// See Global Unlock Sample for sample code.
Get Create (RefClass(cComChilkatHttp)) To hoHttp
If (Not(IsComObjectCreated(hoHttp))) Begin
Send CreateComObject of hoHttp
End
// 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}}"
// }
Get Create (RefClass(cComChilkatJsonObject)) To hoJson
If (Not(IsComObjectCreated(hoJson))) Begin
Send CreateComObject of hoJson
End
Get ComUpdateString Of hoJson "displayName" "{{eventDisplayName}}" To iSuccess
Get ComUpdateString Of hoJson "description" "{{eventDescription}}" To iSuccess
Get ComUpdateString Of hoJson "eventQueries[0].queryType" "files" To iSuccess
Get ComUpdateString Of hoJson "eventQueries[0].query" "12345" To iSuccess
Get ComUpdateString Of hoJson "eventQueries[1].queryType" "messages" To iSuccess
Get ComUpdateString Of hoJson "eventQueries[1].query" "test" To iSuccess
Get ComUpdateString Of hoJson "eventTriggerDateTime" "2022-09-14T00:00:00Z" To iSuccess
Get ComUpdateString Of hoJson '"retentionEventType@odata.bind"' "https://graph.microsoft.com/beta/security/triggerTypes/retentionEventTypes/{{retentionEventTypeId}}" To iSuccess
// Adds the "Authorization: Bearer <access_token>" header.
Set ComAuthToken Of hoHttp To "<access_token>"
Get pvComObject of hoJson to vJson
Get ComPostJson3 Of hoHttp "https://graph.microsoft.com/beta/security/triggers/retentionEvents" "application/json" vJson To vResp
If (IsComObject(vResp)) Begin
Get Create (RefClass(cComChilkatHttpResponse)) To hoResp
Set pvComObject Of hoResp To vResp
End
Get ComLastMethodSuccess Of hoHttp To bTemp1
If (bTemp1 = False) Begin
Get ComLastErrorText Of hoHttp To sTemp1
Showln sTemp1
Procedure_Return
End
Get ComStatusCode Of hoResp To iTemp1
Showln iTemp1
Get ComBodyStr Of hoResp To sTemp1
Showln sTemp1
Send Destroy of hoResp
End_Procedure
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": [
]
}