Chilkat Online Tools

SQL Server / Datadog API Collection / Get all global variables

Back to Collection Items

-- Important: See this note about string length limitations for strings returned by sp_OAMethod calls.
--
CREATE PROCEDURE ChilkatSample
AS
BEGIN
    DECLARE @hr int
    -- Important: Do not use nvarchar(max).  See the warning about using nvarchar(max).
    DECLARE @sTmp0 nvarchar(4000)
    -- This example assumes the Chilkat API to have been previously unlocked.
    -- See Global Unlock Sample for sample code.

    DECLARE @http int
    EXEC @hr = sp_OACreate 'Chilkat_9_5_0.Http', @http OUT
    IF @hr <> 0
    BEGIN
        PRINT 'Failed to create ActiveX component'
        RETURN
    END

    DECLARE @success int

    EXEC sp_OAMethod @http, 'SetRequestHeader', NULL, 'Accept', 'application/json'

    DECLARE @sbResponseBody int
    EXEC @hr = sp_OACreate 'Chilkat_9_5_0.StringBuilder', @sbResponseBody OUT

    EXEC sp_OAMethod @http, 'QuickGetSb', @success OUT, 'https://api.app.ddog-gov.com/api/v1/synthetics/variables', @sbResponseBody
    IF @success = 0
      BEGIN
        EXEC sp_OAGetProperty @http, 'LastErrorText', @sTmp0 OUT
        PRINT @sTmp0
        EXEC @hr = sp_OADestroy @http
        EXEC @hr = sp_OADestroy @sbResponseBody
        RETURN
      END

    DECLARE @jResp int
    EXEC @hr = sp_OACreate 'Chilkat_9_5_0.JsonObject', @jResp OUT

    EXEC sp_OAMethod @jResp, 'LoadSb', @success OUT, @sbResponseBody
    EXEC sp_OASetProperty @jResp, 'EmitCompact', 0


    PRINT 'Response Body:'
    EXEC sp_OAMethod @jResp, 'Emit', @sTmp0 OUT
    PRINT @sTmp0

    DECLARE @respStatusCode int
    EXEC sp_OAGetProperty @http, 'LastStatus', @respStatusCode OUT

    PRINT 'Response Status Code = ' + @respStatusCode
    IF @respStatusCode >= 400
      BEGIN

        PRINT 'Response Header:'
        EXEC sp_OAGetProperty @http, 'LastHeader', @sTmp0 OUT
        PRINT @sTmp0

        PRINT 'Failed.'
        EXEC @hr = sp_OADestroy @http
        EXEC @hr = sp_OADestroy @sbResponseBody
        EXEC @hr = sp_OADestroy @jResp
        RETURN
      END

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

    -- {
    --   "variables": [
    --     {
    --       "description": "Example description",
    --       "name": "MY_VARIABLE",
    --       "tags": [
    --         "team:front",
    --         "test:workflow-1"
    --       ],
    --       "value": {
    --         "secure": true,
    --         "value": "value"
    --       },
    --       "attributes": {
    --         "restricted_roles": [
    --           "xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx"
    --         ]
    --       },
    --       "id": "id Ut Excepteur commodo consectetur",
    --       "parse_test_options": {
    --         "type": "http_body",
    --         "field": "content-type",
    --         "localVariableName": "LOCAL_VARIABLE",
    --         "parser": {
    --           "type": "regex",
    --           "value": ".*"
    --         }
    --       },
    --       "parse_test_public_id": "abc-def-123"
    --     },
    --     {
    --       "description": "Example description",
    --       "name": "MY_VARIABLE",
    --       "tags": [
    --         "team:front",
    --         "test:workflow-1"
    --       ],
    --       "value": {
    --         "secure": true,
    --         "value": "value"
    --       },
    --       "attributes": {
    --         "restricted_roles": [
    --           "xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx"
    --         ]
    --       },
    --       "id": "consectetur enim magna",
    --       "parse_test_options": {
    --         "type": "http_body",
    --         "field": "content-type",
    --         "localVariableName": "LOCAL_VARIABLE",
    --         "parser": {
    --           "type": "regex",
    --           "value": ".*"
    --         }
    --       },
    --       "parse_test_public_id": "abc-def-123"
    --     }
    --   ]
    -- }

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

    DECLARE @description nvarchar(4000)

    DECLARE @name nvarchar(4000)

    DECLARE @Secure int

    DECLARE @Value nvarchar(4000)

    DECLARE @id nvarchar(4000)

    DECLARE @v_Type nvarchar(4000)

    DECLARE @Field nvarchar(4000)

    DECLARE @LocalVariableName nvarchar(4000)

    DECLARE @ParserType nvarchar(4000)

    DECLARE @ParserValue nvarchar(4000)

    DECLARE @parse_test_public_id nvarchar(4000)

    DECLARE @j int

    DECLARE @count_j int

    DECLARE @strVal nvarchar(4000)

    DECLARE @i int
    SELECT @i = 0
    DECLARE @count_i int
    EXEC sp_OAMethod @jResp, 'SizeOfArray', @count_i OUT, 'variables'
    WHILE @i < @count_i
      BEGIN
        EXEC sp_OASetProperty @jResp, 'I', @i
        EXEC sp_OAMethod @jResp, 'StringOf', @description OUT, 'variables[i].description'
        EXEC sp_OAMethod @jResp, 'StringOf', @name OUT, 'variables[i].name'
        EXEC sp_OAMethod @jResp, 'BoolOf', @Secure OUT, 'variables[i].value.secure'
        EXEC sp_OAMethod @jResp, 'StringOf', @Value OUT, 'variables[i].value.value'
        EXEC sp_OAMethod @jResp, 'StringOf', @id OUT, 'variables[i].id'
        EXEC sp_OAMethod @jResp, 'StringOf', @v_Type OUT, 'variables[i].parse_test_options.type'
        EXEC sp_OAMethod @jResp, 'StringOf', @Field OUT, 'variables[i].parse_test_options.field'
        EXEC sp_OAMethod @jResp, 'StringOf', @LocalVariableName OUT, 'variables[i].parse_test_options.localVariableName'
        EXEC sp_OAMethod @jResp, 'StringOf', @ParserType OUT, 'variables[i].parse_test_options.parser.type'
        EXEC sp_OAMethod @jResp, 'StringOf', @ParserValue OUT, 'variables[i].parse_test_options.parser.value'
        EXEC sp_OAMethod @jResp, 'StringOf', @parse_test_public_id OUT, 'variables[i].parse_test_public_id'
        SELECT @j = 0
        EXEC sp_OAMethod @jResp, 'SizeOfArray', @count_j OUT, 'variables[i].tags'
        WHILE @j < @count_j
          BEGIN
            EXEC sp_OASetProperty @jResp, 'J', @j
            EXEC sp_OAMethod @jResp, 'StringOf', @strVal OUT, 'variables[i].tags[j]'
            SELECT @j = @j + 1
          END
        SELECT @j = 0
        EXEC sp_OAMethod @jResp, 'SizeOfArray', @count_j OUT, 'variables[i].attributes.restricted_roles'
        WHILE @j < @count_j
          BEGIN
            EXEC sp_OASetProperty @jResp, 'J', @j
            EXEC sp_OAMethod @jResp, 'StringOf', @strVal OUT, 'variables[i].attributes.restricted_roles[j]'
            SELECT @j = @j + 1
          END
        SELECT @i = @i + 1
      END

    EXEC @hr = sp_OADestroy @http
    EXEC @hr = sp_OADestroy @sbResponseBody
    EXEC @hr = sp_OADestroy @jResp


END
GO

Curl Command

curl -X GET
	-H "Accept: application/json"
https://api.app.ddog-gov.com/api/v1/synthetics/variables

Postman Collection Item JSON

{
  "name": "Get all global variables",
  "request": {
    "method": "GET",
    "header": [
      {
        "key": "Accept",
        "value": "application/json"
      }
    ],
    "url": {
      "raw": "{{baseUrl}}/api/v1/synthetics/variables",
      "host": [
        "{{baseUrl}}"
      ],
      "path": [
        "api",
        "v1",
        "synthetics",
        "variables"
      ]
    },
    "description": "Get the list of all Synthetic global variables."
  },
  "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/v1/synthetics/variables",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "api",
            "v1",
            "synthetics",
            "variables"
          ]
        }
      },
      "status": "OK",
      "code": 200,
      "_postman_previewlanguage": "json",
      "header": [
        {
          "key": "Content-Type",
          "value": "application/json"
        }
      ],
      "cookie": [
      ],
      "body": "{\n  \"variables\": [\n    {\n      \"description\": \"Example description\",\n      \"name\": \"MY_VARIABLE\",\n      \"tags\": [\n        \"team:front\",\n        \"test:workflow-1\"\n      ],\n      \"value\": {\n        \"secure\": true,\n        \"value\": \"value\"\n      },\n      \"attributes\": {\n        \"restricted_roles\": [\n          \"xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx\"\n        ]\n      },\n      \"id\": \"id Ut Excepteur commodo consectetur\",\n      \"parse_test_options\": {\n        \"type\": \"http_body\",\n        \"field\": \"content-type\",\n        \"localVariableName\": \"LOCAL_VARIABLE\",\n        \"parser\": {\n          \"type\": \"regex\",\n          \"value\": \".*\"\n        }\n      },\n      \"parse_test_public_id\": \"abc-def-123\"\n    },\n    {\n      \"description\": \"Example description\",\n      \"name\": \"MY_VARIABLE\",\n      \"tags\": [\n        \"team:front\",\n        \"test:workflow-1\"\n      ],\n      \"value\": {\n        \"secure\": true,\n        \"value\": \"value\"\n      },\n      \"attributes\": {\n        \"restricted_roles\": [\n          \"xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx\"\n        ]\n      },\n      \"id\": \"consectetur enim magna\",\n      \"parse_test_options\": {\n        \"type\": \"http_body\",\n        \"field\": \"content-type\",\n        \"localVariableName\": \"LOCAL_VARIABLE\",\n        \"parser\": {\n          \"type\": \"regex\",\n          \"value\": \".*\"\n        }\n      },\n      \"parse_test_public_id\": \"abc-def-123\"\n    }\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/v1/synthetics/variables",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "api",
            "v1",
            "synthetics",
            "variables"
          ]
        }
      },
      "status": "Forbidden",
      "code": 403,
      "_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": "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/v1/synthetics/variables",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "api",
            "v1",
            "synthetics",
            "variables"
          ]
        }
      },
      "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}"
    }
  ]
}