Chilkat Online Tools

Delphi (DLL) / Datadog API Collection / List all the RUM applications

Back to Collection Items

var

begin
success := CkHttp_QuickGetSb(http,'https://api.app.ddog-gov.com/api/v2/rum/applications',sbResponseBody);CkJsonObject_LoadSb(jResp,sbResponseBody);CkJsonObject_putEmitCompact(jResp,False);CkJsonObject_putI(jResp,i);Application_id := CkJsonObject__stringOf(jResp,'data[i].attributes.application_id');Created_at := CkJsonObject__stringOf(jResp,'data[i].attributes.created_at');Created_by_handle := CkJsonObject__stringOf(jResp,'data[i].attributes.created_by_handle');Name := CkJsonObject__stringOf(jResp,'data[i].attributes.name');Org_id := CkJsonObject__stringOf(jResp,'data[i].attributes.org_id');v_Type := CkJsonObject__stringOf(jResp,'data[i].attributes.type');Updated_at := CkJsonObject__stringOf(jResp,'data[i].attributes.updated_at');Updated_by_handle := CkJsonObject__stringOf(jResp,'data[i].attributes.updated_by_handle');Hash := CkJsonObject__stringOf(jResp,'data[i].attributes.hash');Is_active := CkJsonObject__stringOf(jResp,'data[i].attributes.is_active');v_type := CkJsonObject__stringOf(jResp,'data[i].type');id := CkJsonObject__stringOf(jResp,'data[i].id');i := i + 1;


Curl Command

curl -X GET
	-H "Accept: application/json"
https://api.app.ddog-gov.com/api/v2/rum/applications

Postman Collection Item JSON

{
  "name": "List all the RUM applications",
  "request": {
    "method": "GET",
    "header": [
      {
        "key": "Accept",
        "value": "application/json"
      }
    ],
    "url": {
      "raw": "{{baseUrl}}/api/v2/rum/applications",
      "host": [
        "{{baseUrl}}"
      ],
      "path": [
        "api",
        "v2",
        "rum",
        "applications"
      ]
    },
    "description": "List all the RUM applications in your organization."
  },
  "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/rum/applications",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "api",
            "v2",
            "rum",
            "applications"
          ]
        }
      },
      "status": "OK",
      "code": 200,
      "_postman_previewlanguage": "json",
      "header": [
        {
          "key": "Content-Type",
          "value": "application/json"
        }
      ],
      "cookie": [
      ],
      "body": "{\n  \"data\": [\n    {\n      \"attributes\": {\n        \"application_id\": \"<string>\",\n        \"created_at\": \"<long>\",\n        \"created_by_handle\": \"<string>\",\n        \"name\": \"<string>\",\n        \"org_id\": \"<integer>\",\n        \"type\": \"<string>\",\n        \"updated_at\": \"<long>\",\n        \"updated_by_handle\": \"<string>\",\n        \"hash\": \"<string>\",\n        \"is_active\": \"<boolean>\"\n      },\n      \"type\": \"rum_application\",\n      \"id\": \"<string>\"\n    },\n    {\n      \"attributes\": {\n        \"application_id\": \"<string>\",\n        \"created_at\": \"<long>\",\n        \"created_by_handle\": \"<string>\",\n        \"name\": \"<string>\",\n        \"org_id\": \"<integer>\",\n        \"type\": \"<string>\",\n        \"updated_at\": \"<long>\",\n        \"updated_by_handle\": \"<string>\",\n        \"hash\": \"<string>\",\n        \"is_active\": \"<boolean>\"\n      },\n      \"type\": \"rum_application\",\n      \"id\": \"<string>\"\n    }\n  ]\n}"
    },
    {
      "name": "Not Found",
      "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/rum/applications",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "api",
            "v2",
            "rum",
            "applications"
          ]
        }
      },
      "status": "Not Found",
      "code": 404,
      "_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/rum/applications",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "api",
            "v2",
            "rum",
            "applications"
          ]
        }
      },
      "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}"
    }
  ]
}