Back to Collection Items
integer li_rc
oleobject loo_Http
integer li_Success
oleobject loo_Json
oleobject loo_Resp
oleobject loo_SbResponseBody
oleobject loo_JResp
integer li_RespStatusCode
string ls_StrVal
string ls_Alert_type
integer li_Date_happened
string ls_Device_name
string ls_Host
integer li_Id
string ls_Id_str
string ls_Payload
string ls_Priority
string ls_Source_type_name
string ls_Text
string ls_Title
string ls_V_Url
string ls_Status
integer i
integer li_Count_i
// This example assumes the Chilkat API to have been previously unlocked.
// See Global Unlock Sample for sample code.
loo_Http = create oleobject
// Use "Chilkat_9_5_0.Http" for versions of Chilkat < 10.0.0
li_rc = loo_Http.ConnectToNewObject("Chilkat.Http")
if li_rc < 0 then
destroy loo_Http
MessageBox("Error","Connecting to COM object failed")
return
end if
// Use this online tool to generate code from sample JSON: Generate Code to Create JSON
// The following JSON is sent in the request body.
// {
// "title": "Did you hear the news today?",
// "text": "Oh boy!",
// "aggregation_key": "officia ex veniam",
// "alert_type": "info",
// "date_happened": 73027040,
// "device_name": "ut eu fugiat cul",
// "host": "i",
// "priority": "normal",
// "related_event_id": -43026196,
// "source_type_name": "Lorem Ut",
// "tags": [
// "environment:test"
// ]
// }
loo_Json = create oleobject
// Use "Chilkat_9_5_0.JsonObject" for versions of Chilkat < 10.0.0
li_rc = loo_Json.ConnectToNewObject("Chilkat.JsonObject")
loo_Json.UpdateString("title","Did you hear the news today?")
loo_Json.UpdateString("text","Oh boy!")
loo_Json.UpdateString("aggregation_key","officia ex veniam")
loo_Json.UpdateString("alert_type","info")
loo_Json.UpdateInt("date_happened",73027040)
loo_Json.UpdateString("device_name","ut eu fugiat cul")
loo_Json.UpdateString("host","i")
loo_Json.UpdateString("priority","normal")
loo_Json.UpdateInt("related_event_id",-43026196)
loo_Json.UpdateString("source_type_name","Lorem Ut")
loo_Json.UpdateString("tags[0]","environment:test")
loo_Http.SetRequestHeader("Content-Type","application/json")
loo_Http.SetRequestHeader("Accept","application/json")
loo_Resp = loo_Http.PostJson3("https://api.app.ddog-gov.com/api/v1/events","application/json",loo_Json)
if loo_Http.LastMethodSuccess = 0 then
Write-Debug loo_Http.LastErrorText
destroy loo_Http
destroy loo_Json
return
end if
loo_SbResponseBody = create oleobject
// Use "Chilkat_9_5_0.StringBuilder" for versions of Chilkat < 10.0.0
li_rc = loo_SbResponseBody.ConnectToNewObject("Chilkat.StringBuilder")
loo_Resp.GetBodySb(loo_SbResponseBody)
loo_JResp = create oleobject
// Use "Chilkat_9_5_0.JsonObject" for versions of Chilkat < 10.0.0
li_rc = loo_JResp.ConnectToNewObject("Chilkat.JsonObject")
loo_JResp.LoadSb(loo_SbResponseBody)
loo_JResp.EmitCompact = 0
Write-Debug "Response Body:"
Write-Debug loo_JResp.Emit()
li_RespStatusCode = loo_Resp.StatusCode
Write-Debug "Response Status Code = " + string(li_RespStatusCode)
if li_RespStatusCode >= 400 then
Write-Debug "Response Header:"
Write-Debug loo_Resp.Header
Write-Debug "Failed."
destroy loo_Resp
destroy loo_Http
destroy loo_Json
destroy loo_SbResponseBody
destroy loo_JResp
return
end if
destroy loo_Resp
// Sample JSON response:
// (Sample code for parsing the JSON response is shown below)
// {
// "event": {
// "alert_type": "info",
// "date_happened": -7687934,
// "device_name": "labore aliquip dolor",
// "host": "incididunt sunt",
// "id": -98412440,
// "id_str": "incididunt laborum",
// "payload": "{}",
// "priority": "normal",
// "source_type_name": "commodo cupidatat ea",
// "tags": [
// "environment:test"
// ],
// "text": "Oh boy!",
// "title": "Did you hear the news today?",
// "url": "non"
// },
// "status": "sit in"
// }
// Sample code for parsing the JSON response...
// Use this online tool to generate parsing code from sample JSON: Generate JSON Parsing Code
ls_Alert_type = loo_JResp.StringOf("event.alert_type")
li_Date_happened = loo_JResp.IntOf("event.date_happened")
ls_Device_name = loo_JResp.StringOf("event.device_name")
ls_Host = loo_JResp.StringOf("event.host")
li_Id = loo_JResp.IntOf("event.id")
ls_Id_str = loo_JResp.StringOf("event.id_str")
ls_Payload = loo_JResp.StringOf("event.payload")
ls_Priority = loo_JResp.StringOf("event.priority")
ls_Source_type_name = loo_JResp.StringOf("event.source_type_name")
ls_Text = loo_JResp.StringOf("event.text")
ls_Title = loo_JResp.StringOf("event.title")
ls_V_Url = loo_JResp.StringOf("event.url")
ls_Status = loo_JResp.StringOf("status")
i = 0
li_Count_i = loo_JResp.SizeOfArray("event.tags")
do while i < li_Count_i
loo_JResp.I = i
ls_StrVal = loo_JResp.StringOf("event.tags[i]")
i = i + 1
loop
destroy loo_Http
destroy loo_Json
destroy loo_SbResponseBody
destroy loo_JResp
Curl Command
curl -X POST
-H "Content-Type: application/json"
-H "Accept: application/json"
-d '{
"title": "Did you hear the news today?",
"text": "Oh boy!",
"aggregation_key": "officia ex veniam",
"alert_type": "info",
"date_happened": 73027040,
"device_name": "ut eu fugiat cul",
"host": "i",
"priority": "normal",
"related_event_id": -43026196,
"source_type_name": "Lorem Ut",
"tags": [
"environment:test"
]
}'
https://api.app.ddog-gov.com/api/v1/events
Postman Collection Item JSON
{
"name": "Post an event",
"request": {
"method": "POST",
"header": [
{
"key": "Content-Type",
"value": "application/json"
},
{
"key": "Accept",
"value": "application/json"
}
],
"body": {
"mode": "raw",
"raw": "{\n \"title\": \"Did you hear the news today?\",\n \"text\": \"Oh boy!\",\n \"aggregation_key\": \"officia ex veniam\",\n \"alert_type\": \"info\",\n \"date_happened\": 73027040,\n \"device_name\": \"ut eu fugiat cul\",\n \"host\": \"i\",\n \"priority\": \"normal\",\n \"related_event_id\": -43026196,\n \"source_type_name\": \"Lorem Ut\",\n \"tags\": [\n \"environment:test\"\n ]\n}",
"options": {
"raw": {
"headerFamily": "json",
"language": "json"
}
}
},
"url": {
"raw": "{{baseUrl}}/api/v1/events",
"host": [
"{{baseUrl}}"
],
"path": [
"api",
"v1",
"events"
]
},
"description": "This endpoint allows you to post events to the stream.\nTag them, set priority and event aggregate them with other events."
},
"response": [
{
"name": "OK",
"originalRequest": {
"method": "POST",
"header": [
{
"key": "Content-Type",
"value": "application/json"
},
{
"key": "Accept",
"value": "application/json"
},
{
"description": "Added as a part of security scheme: apikey",
"key": "DD-API-KEY",
"value": "<API Key>"
}
],
"body": {
"mode": "raw",
"raw": "{\n \"title\": \"Did you hear the news today?\",\n \"text\": \"Oh boy!\",\n \"aggregation_key\": \"officia ex veniam\",\n \"alert_type\": \"info\",\n \"date_happened\": 73027040,\n \"device_name\": \"ut eu fugiat cul\",\n \"host\": \"i\",\n \"priority\": \"normal\",\n \"related_event_id\": -43026196,\n \"source_type_name\": \"Lorem Ut\",\n \"tags\": [\n \"environment:test\"\n ]\n}",
"options": {
"raw": {
"headerFamily": "json",
"language": "json"
}
}
},
"url": {
"raw": "{{baseUrl}}/api/v1/events",
"host": [
"{{baseUrl}}"
],
"path": [
"api",
"v1",
"events"
]
}
},
"status": "Accepted",
"code": 202,
"_postman_previewlanguage": "json",
"header": [
{
"key": "Content-Type",
"value": "application/json"
}
],
"cookie": [
],
"body": "{\n \"event\": {\n \"alert_type\": \"info\",\n \"date_happened\": -7687934,\n \"device_name\": \"labore aliquip dolor\",\n \"host\": \"incididunt sunt\",\n \"id\": -98412440,\n \"id_str\": \"incididunt laborum\",\n \"payload\": \"{}\",\n \"priority\": \"normal\",\n \"source_type_name\": \"commodo cupidatat ea\",\n \"tags\": [\n \"environment:test\"\n ],\n \"text\": \"Oh boy!\",\n \"title\": \"Did you hear the news today?\",\n \"url\": \"non\"\n },\n \"status\": \"sit in\"\n}"
},
{
"name": "Bad Request",
"originalRequest": {
"method": "POST",
"header": [
{
"key": "Content-Type",
"value": "application/json"
},
{
"key": "Accept",
"value": "application/json"
},
{
"description": "Added as a part of security scheme: apikey",
"key": "DD-API-KEY",
"value": "<API Key>"
}
],
"body": {
"mode": "raw",
"raw": "{\n \"title\": \"Did you hear the news today?\",\n \"text\": \"Oh boy!\",\n \"aggregation_key\": \"officia ex veniam\",\n \"alert_type\": \"info\",\n \"date_happened\": 73027040,\n \"device_name\": \"ut eu fugiat cul\",\n \"host\": \"i\",\n \"priority\": \"normal\",\n \"related_event_id\": -43026196,\n \"source_type_name\": \"Lorem Ut\",\n \"tags\": [\n \"environment:test\"\n ]\n}",
"options": {
"raw": {
"headerFamily": "json",
"language": "json"
}
}
},
"url": {
"raw": "{{baseUrl}}/api/v1/events",
"host": [
"{{baseUrl}}"
],
"path": [
"api",
"v1",
"events"
]
}
},
"status": "Bad Request",
"code": 400,
"_postman_previewlanguage": "json",
"header": [
{
"key": "Content-Type",
"value": "application/json"
}
],
"cookie": [
],
"body": "{\n \"errors\": [\n \"Bad Request\",\n \"Bad Request\"\n ]\n}"
},
{
"name": "Too many requests",
"originalRequest": {
"method": "POST",
"header": [
{
"key": "Content-Type",
"value": "application/json"
},
{
"key": "Accept",
"value": "application/json"
},
{
"description": "Added as a part of security scheme: apikey",
"key": "DD-API-KEY",
"value": "<API Key>"
}
],
"body": {
"mode": "raw",
"raw": "{\n \"title\": \"Did you hear the news today?\",\n \"text\": \"Oh boy!\",\n \"aggregation_key\": \"officia ex veniam\",\n \"alert_type\": \"info\",\n \"date_happened\": 73027040,\n \"device_name\": \"ut eu fugiat cul\",\n \"host\": \"i\",\n \"priority\": \"normal\",\n \"related_event_id\": -43026196,\n \"source_type_name\": \"Lorem Ut\",\n \"tags\": [\n \"environment:test\"\n ]\n}",
"options": {
"raw": {
"headerFamily": "json",
"language": "json"
}
}
},
"url": {
"raw": "{{baseUrl}}/api/v1/events",
"host": [
"{{baseUrl}}"
],
"path": [
"api",
"v1",
"events"
]
}
},
"status": "Too Many Requests",
"code": 429,
"_postman_previewlanguage": "json",
"header": [
{
"key": "Content-Type",
"value": "application/json"
}
],
"cookie": [
],
"body": "{\n \"errors\": [\n \"Bad Request\",\n \"Bad Request\"\n ]\n}"
}
]
}