Chilkat Online Tools

DataFlex / Datadog API Collection / List Confluent accounts

Back to Collection Items

Use ChilkatAx-9.5.0-win32.pkg

Procedure Test
    Handle hoHttp
    Boolean iSuccess
    Variant vSbResponseBody
    Handle hoSbResponseBody
    Handle hoJResp
    Integer iRespStatusCode
    String sApi_key
    String sId
    String sV_type
    Integer j
    Integer iCount_j
    String sResource_type
    Boolean iEnable_custom_metrics
    Integer k
    Integer iCount_k
    String sStrVal
    Integer i
    Integer iCount_i
    String sTemp1

    // 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

    Send ComSetRequestHeader To hoHttp "Accept" "application/json"

    Get Create (RefClass(cComChilkatStringBuilder)) To hoSbResponseBody
    If (Not(IsComObjectCreated(hoSbResponseBody))) Begin
        Send CreateComObject of hoSbResponseBody
    End
    Get pvComObject of hoSbResponseBody to vSbResponseBody
    Get ComQuickGetSb Of hoHttp "https://api.app.ddog-gov.com/api/v2/integrations/confluent-cloud/accounts" vSbResponseBody To iSuccess
    If (iSuccess = False) Begin
        Get ComLastErrorText Of hoHttp To sTemp1
        Showln sTemp1
        Procedure_Return
    End

    Get Create (RefClass(cComChilkatJsonObject)) To hoJResp
    If (Not(IsComObjectCreated(hoJResp))) Begin
        Send CreateComObject of hoJResp
    End
    Get pvComObject of hoSbResponseBody to vSbResponseBody
    Get ComLoadSb Of hoJResp vSbResponseBody To iSuccess
    Set ComEmitCompact Of hoJResp To False

    Showln "Response Body:"
    Get ComEmit Of hoJResp To sTemp1
    Showln sTemp1

    Get ComLastStatus Of hoHttp To iRespStatusCode
    Showln "Response Status Code = " iRespStatusCode
    If (iRespStatusCode >= 400) Begin
        Showln "Response Header:"
        Get ComLastHeader Of hoHttp To sTemp1
        Showln sTemp1
        Showln "Failed."
        Procedure_Return
    End

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

    // {
    //   "data": [
    //     {
    //       "attributes": {
    //         "api_key": "<string>",
    //         "resources": [
    //           {
    //             "resource_type": "<string>",
    //             "enable_custom_metrics": false,
    //             "id": "<string>",
    //             "tags": [
    //               "<string>",
    //               "<string>"
    //             ]
    //           },
    //           {
    //             "resource_type": "<string>",
    //             "enable_custom_metrics": false,
    //             "id": "<string>",
    //             "tags": [
    //               "<string>",
    //               "<string>"
    //             ]
    //           }
    //         ],
    //         "tags": [
    //           "<string>",
    //           "<string>"
    //         ]
    //       },
    //       "id": "<string>",
    //       "type": "confluent-cloud-accounts"
    //     },
    //     {
    //       "attributes": {
    //         "api_key": "<string>",
    //         "resources": [
    //           {
    //             "resource_type": "<string>",
    //             "enable_custom_metrics": false,
    //             "id": "<string>",
    //             "tags": [
    //               "<string>",
    //               "<string>"
    //             ]
    //           },
    //           {
    //             "resource_type": "<string>",
    //             "enable_custom_metrics": false,
    //             "id": "<string>",
    //             "tags": [
    //               "<string>",
    //               "<string>"
    //             ]
    //           }
    //         ],
    //         "tags": [
    //           "<string>",
    //           "<string>"
    //         ]
    //       },
    //       "id": "<string>",
    //       "type": "confluent-cloud-accounts"
    //     }
    //   ]
    // }

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

    Move 0 To i
    Get ComSizeOfArray Of hoJResp "data" To iCount_i
    While (i < iCount_i)
        Set ComI Of hoJResp To i
        Get ComStringOf Of hoJResp "data[i].attributes.api_key" To sApi_key
        Get ComStringOf Of hoJResp "data[i].id" To sId
        Get ComStringOf Of hoJResp "data[i].type" To sV_type
        Move 0 To j
        Get ComSizeOfArray Of hoJResp "data[i].attributes.resources" To iCount_j
        While (j < iCount_j)
            Set ComJ Of hoJResp To j
            Get ComStringOf Of hoJResp "data[i].attributes.resources[j].resource_type" To sResource_type
            Get ComBoolOf Of hoJResp "data[i].attributes.resources[j].enable_custom_metrics" To iEnable_custom_metrics
            Get ComStringOf Of hoJResp "data[i].attributes.resources[j].id" To sId
            Move 0 To k
            Get ComSizeOfArray Of hoJResp "data[i].attributes.resources[j].tags" To iCount_k
            While (k < iCount_k)
                Set ComK Of hoJResp To k
                Get ComStringOf Of hoJResp "data[i].attributes.resources[j].tags[k]" To sStrVal
                Move (k + 1) To k
            Loop

            Move (j + 1) To j
        Loop

        Move 0 To j
        Get ComSizeOfArray Of hoJResp "data[i].attributes.tags" To iCount_j
        While (j < iCount_j)
            Set ComJ Of hoJResp To j
            Get ComStringOf Of hoJResp "data[i].attributes.tags[j]" To sStrVal
            Move (j + 1) To j
        Loop

        Move (i + 1) To i
    Loop



End_Procedure

Curl Command

curl -X GET
	-H "Accept: application/json"
https://api.app.ddog-gov.com/api/v2/integrations/confluent-cloud/accounts

Postman Collection Item JSON

{
  "name": "List Confluent accounts",
  "request": {
    "method": "GET",
    "header": [
      {
        "key": "Accept",
        "value": "application/json"
      }
    ],
    "url": {
      "raw": "{{baseUrl}}/api/v2/integrations/confluent-cloud/accounts",
      "host": [
        "{{baseUrl}}"
      ],
      "path": [
        "api",
        "v2",
        "integrations",
        "confluent-cloud",
        "accounts"
      ]
    },
    "description": "List Confluent accounts."
  },
  "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/integrations/confluent-cloud/accounts",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "api",
            "v2",
            "integrations",
            "confluent-cloud",
            "accounts"
          ]
        }
      },
      "status": "OK",
      "code": 200,
      "_postman_previewlanguage": "json",
      "header": [
        {
          "key": "Content-Type",
          "value": "application/json"
        }
      ],
      "cookie": [
      ],
      "body": "{\n  \"data\": [\n    {\n      \"attributes\": {\n        \"api_key\": \"<string>\",\n        \"resources\": [\n          {\n            \"resource_type\": \"<string>\",\n            \"enable_custom_metrics\": false,\n            \"id\": \"<string>\",\n            \"tags\": [\n              \"<string>\",\n              \"<string>\"\n            ]\n          },\n          {\n            \"resource_type\": \"<string>\",\n            \"enable_custom_metrics\": false,\n            \"id\": \"<string>\",\n            \"tags\": [\n              \"<string>\",\n              \"<string>\"\n            ]\n          }\n        ],\n        \"tags\": [\n          \"<string>\",\n          \"<string>\"\n        ]\n      },\n      \"id\": \"<string>\",\n      \"type\": \"confluent-cloud-accounts\"\n    },\n    {\n      \"attributes\": {\n        \"api_key\": \"<string>\",\n        \"resources\": [\n          {\n            \"resource_type\": \"<string>\",\n            \"enable_custom_metrics\": false,\n            \"id\": \"<string>\",\n            \"tags\": [\n              \"<string>\",\n              \"<string>\"\n            ]\n          },\n          {\n            \"resource_type\": \"<string>\",\n            \"enable_custom_metrics\": false,\n            \"id\": \"<string>\",\n            \"tags\": [\n              \"<string>\",\n              \"<string>\"\n            ]\n          }\n        ],\n        \"tags\": [\n          \"<string>\",\n          \"<string>\"\n        ]\n      },\n      \"id\": \"<string>\",\n      \"type\": \"confluent-cloud-accounts\"\n    }\n  ]\n}"
    },
    {
      "name": "Bad Request",
      "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/integrations/confluent-cloud/accounts",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "api",
            "v2",
            "integrations",
            "confluent-cloud",
            "accounts"
          ]
        }
      },
      "status": "Bad Request",
      "code": 400,
      "_postman_previewlanguage": "json",
      "header": [
        {
          "key": "Content-Type",
          "value": "application/json"
        }
      ],
      "cookie": [
      ],
      "body": "{\n  \"errors\": [\n    \"<string>\",\n    \"<string>\"\n  ]\n}"
    },
    {
      "name": "Forbidden",
      "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/integrations/confluent-cloud/accounts",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "api",
            "v2",
            "integrations",
            "confluent-cloud",
            "accounts"
          ]
        }
      },
      "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": "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/integrations/confluent-cloud/accounts",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "api",
            "v2",
            "integrations",
            "confluent-cloud",
            "accounts"
          ]
        }
      },
      "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/integrations/confluent-cloud/accounts",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "api",
            "v2",
            "integrations",
            "confluent-cloud",
            "accounts"
          ]
        }
      },
      "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}"
    }
  ]
}