Chilkat Online Tools

Foxpro / Datadog API Collection / Get all security filters

Back to Collection Items

LOCAL loHttp
LOCAL lnSuccess
LOCAL loSbResponseBody
LOCAL loJResp
LOCAL lnRespStatusCode
LOCAL lcFiltered_data_type
LOCAL lcIs_builtin
LOCAL lcIs_enabled
LOCAL lcName
LOCAL lcQuery
LOCAL lcVersion
LOCAL lcId
LOCAL lcV_type
LOCAL j
LOCAL lnCount_j
LOCAL lcName
LOCAL lcQuery
LOCAL lcWarning
LOCAL i
LOCAL lnCount_i

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

loHttp = CreateObject('Chilkat_9_5_0.Http')

loHttp.SetRequestHeader("Accept","application/json")

loSbResponseBody = CreateObject('Chilkat_9_5_0.StringBuilder')
lnSuccess = loHttp.QuickGetSb("https://api.app.ddog-gov.com/api/v2/security_monitoring/configuration/security_filters",loSbResponseBody)
IF (lnSuccess = 0) THEN
    ? loHttp.LastErrorText
    RELEASE loHttp
    RELEASE loSbResponseBody
    CANCEL
ENDIF

loJResp = CreateObject('Chilkat_9_5_0.JsonObject')
loJResp.LoadSb(loSbResponseBody)
loJResp.EmitCompact = 0

? "Response Body:"
? loJResp.Emit()

lnRespStatusCode = loHttp.LastStatus
? "Response Status Code = " + STR(lnRespStatusCode)
IF (lnRespStatusCode >= 400) THEN
    ? "Response Header:"
    ? loHttp.LastHeader
    ? "Failed."
    RELEASE loHttp
    RELEASE loSbResponseBody
    RELEASE loJResp
    CANCEL
ENDIF

* Sample JSON response:
* (Sample code for parsing the JSON response is shown below)

* {
*   "data": [
*     {
*       "attributes": {
*         "exclusion_filters": [
*           {
*             "name": "<string>",
*             "query": "<string>"
*           },
*           {
*             "name": "<string>",
*             "query": "<string>"
*           }
*         ],
*         "filtered_data_type": "logs",
*         "is_builtin": "<boolean>",
*         "is_enabled": "<boolean>",
*         "name": "<string>",
*         "query": "<string>",
*         "version": "<integer>"
*       },
*       "id": "<string>",
*       "type": "security_filters"
*     },
*     {
*       "attributes": {
*         "exclusion_filters": [
*           {
*             "name": "<string>",
*             "query": "<string>"
*           },
*           {
*             "name": "<string>",
*             "query": "<string>"
*           }
*         ],
*         "filtered_data_type": "logs",
*         "is_builtin": "<boolean>",
*         "is_enabled": "<boolean>",
*         "name": "<string>",
*         "query": "<string>",
*         "version": "<integer>"
*       },
*       "id": "<string>",
*       "type": "security_filters"
*     }
*   ],
*   "meta": {
*     "warning": "<string>"
*   }
* }

* Sample code for parsing the JSON response...
* Use this online tool to generate parsing code from sample JSON: Generate JSON Parsing Code

lcWarning = loJResp.StringOf("meta.warning")
i = 0
lnCount_i = loJResp.SizeOfArray("data")
DO WHILE i < lnCount_i
    loJResp.I = i
    lcFiltered_data_type = loJResp.StringOf("data[i].attributes.filtered_data_type")
    lcIs_builtin = loJResp.StringOf("data[i].attributes.is_builtin")
    lcIs_enabled = loJResp.StringOf("data[i].attributes.is_enabled")
    lcName = loJResp.StringOf("data[i].attributes.name")
    lcQuery = loJResp.StringOf("data[i].attributes.query")
    lcVersion = loJResp.StringOf("data[i].attributes.version")
    lcId = loJResp.StringOf("data[i].id")
    lcV_type = loJResp.StringOf("data[i].type")
    j = 0
    lnCount_j = loJResp.SizeOfArray("data[i].attributes.exclusion_filters")
    DO WHILE j < lnCount_j
        loJResp.J = j
        lcName = loJResp.StringOf("data[i].attributes.exclusion_filters[j].name")
        lcQuery = loJResp.StringOf("data[i].attributes.exclusion_filters[j].query")
        j = j + 1
    ENDDO
    i = i + 1
ENDDO

RELEASE loHttp
RELEASE loSbResponseBody
RELEASE loJResp

Curl Command

curl -X GET
	-H "Accept: application/json"
https://api.app.ddog-gov.com/api/v2/security_monitoring/configuration/security_filters

Postman Collection Item JSON

{
  "name": "Get all security filters",
  "request": {
    "method": "GET",
    "header": [
      {
        "key": "Accept",
        "value": "application/json"
      }
    ],
    "url": {
      "raw": "{{baseUrl}}/api/v2/security_monitoring/configuration/security_filters",
      "host": [
        "{{baseUrl}}"
      ],
      "path": [
        "api",
        "v2",
        "security_monitoring",
        "configuration",
        "security_filters"
      ]
    },
    "description": "Get the list of configured security filters with their definitions."
  },
  "response": [
    {
      "name": "OK",
      "originalRequest": {
        "method": "GET",
        "header": [
          {
            "key": "Accept",
            "value": "application/json"
          },
          {
            "description": "Added as a part of security scheme: apikey",
            "key": "DD-API-KEY",
            "value": "<API Key>"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/api/v2/security_monitoring/configuration/security_filters",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "api",
            "v2",
            "security_monitoring",
            "configuration",
            "security_filters"
          ]
        }
      },
      "status": "OK",
      "code": 200,
      "_postman_previewlanguage": "json",
      "header": [
        {
          "key": "Content-Type",
          "value": "application/json"
        }
      ],
      "cookie": [
      ],
      "body": "{\n  \"data\": [\n    {\n      \"attributes\": {\n        \"exclusion_filters\": [\n          {\n            \"name\": \"<string>\",\n            \"query\": \"<string>\"\n          },\n          {\n            \"name\": \"<string>\",\n            \"query\": \"<string>\"\n          }\n        ],\n        \"filtered_data_type\": \"logs\",\n        \"is_builtin\": \"<boolean>\",\n        \"is_enabled\": \"<boolean>\",\n        \"name\": \"<string>\",\n        \"query\": \"<string>\",\n        \"version\": \"<integer>\"\n      },\n      \"id\": \"<string>\",\n      \"type\": \"security_filters\"\n    },\n    {\n      \"attributes\": {\n        \"exclusion_filters\": [\n          {\n            \"name\": \"<string>\",\n            \"query\": \"<string>\"\n          },\n          {\n            \"name\": \"<string>\",\n            \"query\": \"<string>\"\n          }\n        ],\n        \"filtered_data_type\": \"logs\",\n        \"is_builtin\": \"<boolean>\",\n        \"is_enabled\": \"<boolean>\",\n        \"name\": \"<string>\",\n        \"query\": \"<string>\",\n        \"version\": \"<integer>\"\n      },\n      \"id\": \"<string>\",\n      \"type\": \"security_filters\"\n    }\n  ],\n  \"meta\": {\n    \"warning\": \"<string>\"\n  }\n}"
    },
    {
      "name": "Not Authorized",
      "originalRequest": {
        "method": "GET",
        "header": [
          {
            "key": "Accept",
            "value": "application/json"
          },
          {
            "description": "Added as a part of security scheme: apikey",
            "key": "DD-API-KEY",
            "value": "<API Key>"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/api/v2/security_monitoring/configuration/security_filters",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "api",
            "v2",
            "security_monitoring",
            "configuration",
            "security_filters"
          ]
        }
      },
      "status": "Forbidden",
      "code": 403,
      "_postman_previewlanguage": "json",
      "header": [
        {
          "key": "Content-Type",
          "value": "application/json"
        }
      ],
      "cookie": [
      ],
      "body": "{\n  \"errors\": [\n    \"<string>\",\n    \"<string>\"\n  ]\n}"
    },
    {
      "name": "Too many requests",
      "originalRequest": {
        "method": "GET",
        "header": [
          {
            "key": "Accept",
            "value": "application/json"
          },
          {
            "description": "Added as a part of security scheme: apikey",
            "key": "DD-API-KEY",
            "value": "<API Key>"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/api/v2/security_monitoring/configuration/security_filters",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "api",
            "v2",
            "security_monitoring",
            "configuration",
            "security_filters"
          ]
        }
      },
      "status": "Too Many Requests",
      "code": 429,
      "_postman_previewlanguage": "json",
      "header": [
        {
          "key": "Content-Type",
          "value": "application/json"
        }
      ],
      "cookie": [
      ],
      "body": "{\n  \"errors\": [\n    \"<string>\",\n    \"<string>\"\n  ]\n}"
    }
  ]
}