Chilkat Online Tools

delphiDll / Datadog API Collection / Edit a global variable

Back to Collection Items

var
http: HCkHttp;
success: Boolean;
json: HCkJsonObject;
sbRequestBody: HCkStringBuilder;
resp: HCkHttpResponse;
sbResponseBody: HCkStringBuilder;
jResp: HCkJsonObject;
respStatusCode: Integer;
strVal: PWideChar;
description: PWideChar;
name: PWideChar;
Secure: Boolean;
Value: PWideChar;
id: PWideChar;
v_Type: PWideChar;
Field: PWideChar;
LocalVariableName: PWideChar;
ParserType: PWideChar;
ParserValue: PWideChar;
parse_test_public_id: PWideChar;
i: Integer;
count_i: Integer;

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

http := CkHttp_Create();

// Use this online tool to generate code from sample JSON: Generate Code to Create JSON

// The following JSON is sent in the request body.

// {
//   "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": "anim irure id cupidatat",
//   "parse_test_options": {
//     "type": "http_body",
//     "field": "content-type",
//     "localVariableName": "LOCAL_VARIABLE",
//     "parser": {
//       "type": "regex",
//       "value": ".*"
//     }
//   },
//   "parse_test_public_id": "abc-def-123"
// }

json := CkJsonObject_Create();
CkJsonObject_UpdateString(json,'description','Example description');
CkJsonObject_UpdateString(json,'name','MY_VARIABLE');
CkJsonObject_UpdateString(json,'tags[0]','team:front');
CkJsonObject_UpdateString(json,'tags[1]','test:workflow-1');
CkJsonObject_UpdateBool(json,'value.secure',True);
CkJsonObject_UpdateString(json,'value.value','value');
CkJsonObject_UpdateString(json,'attributes.restricted_roles[0]','xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx');
CkJsonObject_UpdateString(json,'id','anim irure id cupidatat');
CkJsonObject_UpdateString(json,'parse_test_options.type','http_body');
CkJsonObject_UpdateString(json,'parse_test_options.field','content-type');
CkJsonObject_UpdateString(json,'parse_test_options.localVariableName','LOCAL_VARIABLE');
CkJsonObject_UpdateString(json,'parse_test_options.parser.type','regex');
CkJsonObject_UpdateString(json,'parse_test_options.parser.value','.*');
CkJsonObject_UpdateString(json,'parse_test_public_id','abc-def-123');

CkHttp_SetRequestHeader(http,'Content-Type','application/json');
CkHttp_SetRequestHeader(http,'Accept','application/json');

sbRequestBody := CkStringBuilder_Create();
CkJsonObject_EmitSb(json,sbRequestBody);

resp := CkHttp_PTextSb(http,'PUT','https://api.app.ddog-gov.com/api/v1/synthetics/variables/:variable_id',sbRequestBody,'utf-8','application/json',False,False);
if (CkHttp_getLastMethodSuccess(http) = False) then
  begin
    Memo1.Lines.Add(CkHttp__lastErrorText(http));
    Exit;
  end;

sbResponseBody := CkStringBuilder_Create();
CkHttpResponse_GetBodySb(resp,sbResponseBody);

jResp := CkJsonObject_Create();
CkJsonObject_LoadSb(jResp,sbResponseBody);
CkJsonObject_putEmitCompact(jResp,False);

Memo1.Lines.Add('Response Body:');
Memo1.Lines.Add(CkJsonObject__emit(jResp));

respStatusCode := CkHttpResponse_getStatusCode(resp);
Memo1.Lines.Add('Response Status Code = ' + IntToStr(respStatusCode));
if (respStatusCode >= 400) then
  begin
    Memo1.Lines.Add('Response Header:');
    Memo1.Lines.Add(CkHttpResponse__header(resp));
    Memo1.Lines.Add('Failed.');
    CkHttpResponse_Dispose(resp);
    Exit;
  end;
CkHttpResponse_Dispose(resp);

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

// {
//   "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": "anim irure id cupidatat",
//   "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

description := CkJsonObject__stringOf(jResp,'description');
name := CkJsonObject__stringOf(jResp,'name');
Secure := CkJsonObject_BoolOf(jResp,'value.secure');
Value := CkJsonObject__stringOf(jResp,'value.value');
id := CkJsonObject__stringOf(jResp,'id');
v_Type := CkJsonObject__stringOf(jResp,'parse_test_options.type');
Field := CkJsonObject__stringOf(jResp,'parse_test_options.field');
LocalVariableName := CkJsonObject__stringOf(jResp,'parse_test_options.localVariableName');
ParserType := CkJsonObject__stringOf(jResp,'parse_test_options.parser.type');
ParserValue := CkJsonObject__stringOf(jResp,'parse_test_options.parser.value');
parse_test_public_id := CkJsonObject__stringOf(jResp,'parse_test_public_id');
i := 0;
count_i := CkJsonObject_SizeOfArray(jResp,'tags');
while i < count_i do
  begin
    CkJsonObject_putI(jResp,i);
    strVal := CkJsonObject__stringOf(jResp,'tags[i]');
    i := i + 1;
  end;

i := 0;
count_i := CkJsonObject_SizeOfArray(jResp,'attributes.restricted_roles');
while i < count_i do
  begin
    CkJsonObject_putI(jResp,i);
    strVal := CkJsonObject__stringOf(jResp,'attributes.restricted_roles[i]');
    i := i + 1;
  end;

CkHttp_Dispose(http);
CkJsonObject_Dispose(json);
CkStringBuilder_Dispose(sbRequestBody);
CkStringBuilder_Dispose(sbResponseBody);
CkJsonObject_Dispose(jResp);

Curl Command

curl -X PUT
	-H "Content-Type: application/json"
	-H "Accept: application/json"
	-d '{
  "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": "anim irure id cupidatat",
  "parse_test_options": {
    "type": "http_body",
    "field": "content-type",
    "localVariableName": "LOCAL_VARIABLE",
    "parser": {
      "type": "regex",
      "value": ".*"
    }
  },
  "parse_test_public_id": "abc-def-123"
}'
https://api.app.ddog-gov.com/api/v1/synthetics/variables/:variable_id

Postman Collection Item JSON

{
  "name": "Edit a global variable",
  "request": {
    "method": "PUT",
    "header": [
      {
        "key": "Content-Type",
        "value": "application/json"
      },
      {
        "key": "Accept",
        "value": "application/json"
      }
    ],
    "body": {
      "mode": "raw",
      "raw": "{\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\": \"anim irure id cupidatat\",\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}",
      "options": {
        "raw": {
          "headerFamily": "json",
          "language": "json"
        }
      }
    },
    "url": {
      "raw": "{{baseUrl}}/api/v1/synthetics/variables/:variable_id",
      "host": [
        "{{baseUrl}}"
      ],
      "path": [
        "api",
        "v1",
        "synthetics",
        "variables",
        ":variable_id"
      ],
      "variable": [
        {
          "key": "variable_id",
          "value": "tempor Ut sed velit"
        }
      ]
    },
    "description": "Edit a Synthetic global variable."
  },
  "response": [
    {
      "name": "OK",
      "originalRequest": {
        "method": "PUT",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          },
          {
            "key": "Accept",
            "value": "application/json"
          },
          {
            "description": "Added as a part of security scheme: apikey",
            "key": "DD-API-KEY",
            "value": "<API Key>"
          }
        ],
        "body": {
          "mode": "raw",
          "raw": "{\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\": \"anim irure id cupidatat\",\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}",
          "options": {
            "raw": {
              "headerFamily": "json",
              "language": "json"
            }
          }
        },
        "url": {
          "raw": "{{baseUrl}}/api/v1/synthetics/variables/:variable_id",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "api",
            "v1",
            "synthetics",
            "variables",
            ":variable_id"
          ],
          "variable": [
            {
              "key": "variable_id"
            }
          ]
        }
      },
      "status": "OK",
      "code": 200,
      "_postman_previewlanguage": "json",
      "header": [
        {
          "key": "Content-Type",
          "value": "application/json"
        }
      ],
      "cookie": [
      ],
      "body": "{\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\": \"anim irure id cupidatat\",\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}"
    },
    {
      "name": "Invalid request",
      "originalRequest": {
        "method": "PUT",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          },
          {
            "key": "Accept",
            "value": "application/json"
          },
          {
            "description": "Added as a part of security scheme: apikey",
            "key": "DD-API-KEY",
            "value": "<API Key>"
          }
        ],
        "body": {
          "mode": "raw",
          "raw": "{\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\": \"anim irure id cupidatat\",\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}",
          "options": {
            "raw": {
              "headerFamily": "json",
              "language": "json"
            }
          }
        },
        "url": {
          "raw": "{{baseUrl}}/api/v1/synthetics/variables/:variable_id",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "api",
            "v1",
            "synthetics",
            "variables",
            ":variable_id"
          ],
          "variable": [
            {
              "key": "variable_id"
            }
          ]
        }
      },
      "status": "Bad Request",
      "code": 400,
      "_postman_previewlanguage": "json",
      "header": [
        {
          "key": "Content-Type",
          "value": "application/json"
        }
      ],
      "cookie": [
      ],
      "body": "{\n  \"errors\": [\n    \"Bad Request\",\n    \"Bad Request\"\n  ]\n}"
    },
    {
      "name": "Forbidden",
      "originalRequest": {
        "method": "PUT",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          },
          {
            "key": "Accept",
            "value": "application/json"
          },
          {
            "description": "Added as a part of security scheme: apikey",
            "key": "DD-API-KEY",
            "value": "<API Key>"
          }
        ],
        "body": {
          "mode": "raw",
          "raw": "{\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\": \"anim irure id cupidatat\",\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}",
          "options": {
            "raw": {
              "headerFamily": "json",
              "language": "json"
            }
          }
        },
        "url": {
          "raw": "{{baseUrl}}/api/v1/synthetics/variables/:variable_id",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "api",
            "v1",
            "synthetics",
            "variables",
            ":variable_id"
          ],
          "variable": [
            {
              "key": "variable_id"
            }
          ]
        }
      },
      "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": "PUT",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          },
          {
            "key": "Accept",
            "value": "application/json"
          },
          {
            "description": "Added as a part of security scheme: apikey",
            "key": "DD-API-KEY",
            "value": "<API Key>"
          }
        ],
        "body": {
          "mode": "raw",
          "raw": "{\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\": \"anim irure id cupidatat\",\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}",
          "options": {
            "raw": {
              "headerFamily": "json",
              "language": "json"
            }
          }
        },
        "url": {
          "raw": "{{baseUrl}}/api/v1/synthetics/variables/:variable_id",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "api",
            "v1",
            "synthetics",
            "variables",
            ":variable_id"
          ],
          "variable": [
            {
              "key": "variable_id"
            }
          ]
        }
      },
      "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}"
    }
  ]
}