Chilkat Online Tools

TCL / Datadog API Collection / Get all security filters

Back to Collection Items

load ./chilkat.dll

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

set http [new_CkHttp]

CkHttp_SetRequestHeader $http "Accept" "application/json"

set sbResponseBody [new_CkStringBuilder]

set success [CkHttp_QuickGetSb $http "https://api.app.ddog-gov.com/api/v2/security_monitoring/configuration/security_filters" $sbResponseBody]
if {$success == 0} then {
    puts [CkHttp_lastErrorText $http]
    delete_CkHttp $http
    delete_CkStringBuilder $sbResponseBody
    exit
}

set jResp [new_CkJsonObject]

CkJsonObject_LoadSb $jResp $sbResponseBody
CkJsonObject_put_EmitCompact $jResp 0

puts "Response Body:"
puts [CkJsonObject_emit $jResp]

set respStatusCode [CkHttp_get_LastStatus $http]
puts "Response Status Code = $respStatusCode"
if {$respStatusCode >= 400} then {
    puts "Response Header:"
    puts [CkHttp_lastHeader $http]
    puts "Failed."
    delete_CkHttp $http
    delete_CkStringBuilder $sbResponseBody
    delete_CkJsonObject $jResp
    exit
}

# 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

set Warning [CkJsonObject_stringOf $jResp "meta.warning"]
set i 0
set count_i [CkJsonObject_SizeOfArray $jResp "data"]
while {$i < $count_i} {
    CkJsonObject_put_I $jResp $i
    set Filtered_data_type [CkJsonObject_stringOf $jResp "data[i].attributes.filtered_data_type"]
    set Is_builtin [CkJsonObject_stringOf $jResp "data[i].attributes.is_builtin"]
    set Is_enabled [CkJsonObject_stringOf $jResp "data[i].attributes.is_enabled"]
    set Name [CkJsonObject_stringOf $jResp "data[i].attributes.name"]
    set Query [CkJsonObject_stringOf $jResp "data[i].attributes.query"]
    set Version [CkJsonObject_stringOf $jResp "data[i].attributes.version"]
    set id [CkJsonObject_stringOf $jResp "data[i].id"]
    set v_type [CkJsonObject_stringOf $jResp "data[i].type"]
    set j 0
    set count_j [CkJsonObject_SizeOfArray $jResp "data[i].attributes.exclusion_filters"]
    while {$j < $count_j} {
        CkJsonObject_put_J $jResp $j
        set name [CkJsonObject_stringOf $jResp "data[i].attributes.exclusion_filters[j].name"]
        set query [CkJsonObject_stringOf $jResp "data[i].attributes.exclusion_filters[j].query"]
        set j [expr $j + 1]
    }
    set i [expr $i + 1]
}

delete_CkHttp $http
delete_CkStringBuilder $sbResponseBody
delete_CkJsonObject $jResp

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