Chilkat Online Tools

delphiDll / Datadog API Collection / Create an API test

Back to Collection Items

var
http: HCkHttp;
success: Boolean;
json: HCkJsonObject;
resp: HCkHttpResponse;
sbResponseBody: HCkStringBuilder;
jResp: HCkJsonObject;
respStatusCode: Integer;
operator: PWideChar;
target: Integer;
strVal: PWideChar;
day: Integer;
from: PWideChar;
v_to: PWideChar;
name: PWideChar;
Method: PWideChar;
v_Url: PWideChar;
Accept_self_signed: Boolean;
Allow_insecure: Boolean;
CheckCertificateRevocation: Boolean;
ExecutionRule: PWideChar;
DisableCors: Boolean;
DisableCsp: Boolean;
Follow_redirects: Boolean;
HttpVersion: PWideChar;
IgnoreServerCertificateError: Boolean;
InitialNavigationTimeout: Integer;
Min_failure_duration: Integer;
Min_location_failed: Integer;
Monitor_name: PWideChar;
Renotify_interval: Integer;
Monitor_priority: Integer;
NoScreenshot: Boolean;
Count: Integer;
Interval: PWideChar;
ApplicationId: PWideChar;
ClientTokenId: Integer;
IsEnabled: Boolean;
Timezone: PWideChar;
Tick_every: Integer;
v_type: PWideChar;
message: PWideChar;
monitor_id: Integer;
public_id: PWideChar;
status: PWideChar;
subtype: 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.

// {
//   "config": {
//     "assertions": [
//       {
//         "operator": "lessThan",
//         "target": 1000,
//         "type": "responseTime"
//       },
//       {
//         "operator": "is",
//         "target": 200,
//         "type": "statusCode"
//       },
//       {
//         "operator": "is",
//         "property": "content-type",
//         "target": "text/html; charset=UTF-8",
//         "type": "header"
//       }
//     ],
//     "request": {
//       "method": "GET",
//       "url": "https://example.com"
//     }
//   },
//   "locations": [
//     "azure:eastus",
//     "aws:eu-west-3"
//   ],
//   "message": "MY_NOTIFICATION_MESSAGE",
//   "name": "MY_TEST_NAME",
//   "options": {
//     "min_failure_duration": 0,
//     "min_location_failed": 1,
//     "monitor_options": {
//       "include_tags": true,
//       "locked": false,
//       "new_host_delay": 300,
//       "notify_audit": false,
//       "notify_no_data": false,
//       "renotify_interval": 0
//     },
//     "tick_every": 60
//   },
//   "status": "live",
//   "subtype": "http",
//   "tags": [
//     "env:production"
//   ],
//   "type": "api"
// }

json := CkJsonObject_Create();
CkJsonObject_UpdateString(json,'config.assertions[0].operator','lessThan');
CkJsonObject_UpdateInt(json,'config.assertions[0].target',1000);
CkJsonObject_UpdateString(json,'config.assertions[0].type','responseTime');
CkJsonObject_UpdateString(json,'config.assertions[1].operator','is');
CkJsonObject_UpdateInt(json,'config.assertions[1].target',200);
CkJsonObject_UpdateString(json,'config.assertions[1].type','statusCode');
CkJsonObject_UpdateString(json,'config.assertions[2].operator','is');
CkJsonObject_UpdateString(json,'config.assertions[2].property','content-type');
CkJsonObject_UpdateString(json,'config.assertions[2].target','text/html; charset=UTF-8');
CkJsonObject_UpdateString(json,'config.assertions[2].type','header');
CkJsonObject_UpdateString(json,'config.request.method','GET');
CkJsonObject_UpdateString(json,'config.request.url','https://example.com');
CkJsonObject_UpdateString(json,'locations[0]','azure:eastus');
CkJsonObject_UpdateString(json,'locations[1]','aws:eu-west-3');
CkJsonObject_UpdateString(json,'message','MY_NOTIFICATION_MESSAGE');
CkJsonObject_UpdateString(json,'name','MY_TEST_NAME');
CkJsonObject_UpdateInt(json,'options.min_failure_duration',0);
CkJsonObject_UpdateInt(json,'options.min_location_failed',1);
CkJsonObject_UpdateBool(json,'options.monitor_options.include_tags',True);
CkJsonObject_UpdateBool(json,'options.monitor_options.locked',False);
CkJsonObject_UpdateInt(json,'options.monitor_options.new_host_delay',300);
CkJsonObject_UpdateBool(json,'options.monitor_options.notify_audit',False);
CkJsonObject_UpdateBool(json,'options.monitor_options.notify_no_data',False);
CkJsonObject_UpdateInt(json,'options.monitor_options.renotify_interval',0);
CkJsonObject_UpdateInt(json,'options.tick_every',60);
CkJsonObject_UpdateString(json,'status','live');
CkJsonObject_UpdateString(json,'subtype','http');
CkJsonObject_UpdateString(json,'tags[0]','env:production');
CkJsonObject_UpdateString(json,'type','api');

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

resp := CkHttp_PostJson3(http,'https://api.app.ddog-gov.com/api/v1/synthetics/tests/api','application/json',json);
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)

// {
//   "name": "Example test name",
//   "config": {
//     "assertions": [
//       {
//         "operator": "lessThan",
//         "target": 1000,
//         "type": "responseTime"
//       }
//     ],
//     "request": {
//       "method": "GET",
//       "url": "https://example.com"
//     }
//   },
//   "locations": [
//     "aws:eu-west-3"
//   ],
//   "options": {
//     "accept_self_signed": true,
//     "allow_insecure": true,
//     "checkCertificateRevocation": true,
//     "ci": {
//       "executionRule": "non_blocking"
//     },
//     "device_ids": [
//       "laptop_large",
//       "laptop_large"
//     ],
//     "disableCors": false,
//     "disableCsp": false,
//     "follow_redirects": true,
//     "httpVersion": "http1",
//     "ignoreServerCertificateError": false,
//     "initialNavigationTimeout": 87780679,
//     "min_failure_duration": -32472759,
//     "min_location_failed": -5806955,
//     "monitor_name": "et deserunt ",
//     "monitor_options": {
//       "renotify_interval": 834
//     },
//     "monitor_priority": 3,
//     "noScreenshot": false,
//     "restricted_roles": [
//       "xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx"
//     ],
//     "retry": {
//       "count": -50657150,
//       "interval": -91565669.0691471
//     },
//     "rumSettings": {
//       "applicationId": "xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx",
//       "clientTokenId": 12345,
//       "isEnabled": true
//     },
//     "scheduling": {
//       "timeframes": [
//         {
//           "day": 1,
//           "from": "07:00",
//           "to": "16:00"
//         },
//         {
//           "day": 3,
//           "from": "07:00",
//           "to": "16:00"
//         }
//       ],
//       "timezone": "America/New_York"
//     },
//     "tick_every": 384020
//   },
//   "type": "api",
//   "message": "Notification message",
//   "monitor_id": 12345678,
//   "public_id": "123-abc-456",
//   "status": "live",
//   "subtype": "http",
//   "tags": [
//     "env:production"
//   ]
// }

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

name := CkJsonObject__stringOf(jResp,'name');
Method := CkJsonObject__stringOf(jResp,'config.request.method');
v_Url := CkJsonObject__stringOf(jResp,'config.request.url');
Accept_self_signed := CkJsonObject_BoolOf(jResp,'options.accept_self_signed');
Allow_insecure := CkJsonObject_BoolOf(jResp,'options.allow_insecure');
CheckCertificateRevocation := CkJsonObject_BoolOf(jResp,'options.checkCertificateRevocation');
ExecutionRule := CkJsonObject__stringOf(jResp,'options.ci.executionRule');
DisableCors := CkJsonObject_BoolOf(jResp,'options.disableCors');
DisableCsp := CkJsonObject_BoolOf(jResp,'options.disableCsp');
Follow_redirects := CkJsonObject_BoolOf(jResp,'options.follow_redirects');
HttpVersion := CkJsonObject__stringOf(jResp,'options.httpVersion');
IgnoreServerCertificateError := CkJsonObject_BoolOf(jResp,'options.ignoreServerCertificateError');
InitialNavigationTimeout := CkJsonObject_IntOf(jResp,'options.initialNavigationTimeout');
Min_failure_duration := CkJsonObject_IntOf(jResp,'options.min_failure_duration');
Min_location_failed := CkJsonObject_IntOf(jResp,'options.min_location_failed');
Monitor_name := CkJsonObject__stringOf(jResp,'options.monitor_name');
Renotify_interval := CkJsonObject_IntOf(jResp,'options.monitor_options.renotify_interval');
Monitor_priority := CkJsonObject_IntOf(jResp,'options.monitor_priority');
NoScreenshot := CkJsonObject_BoolOf(jResp,'options.noScreenshot');
Count := CkJsonObject_IntOf(jResp,'options.retry.count');
Interval := CkJsonObject__stringOf(jResp,'options.retry.interval');
ApplicationId := CkJsonObject__stringOf(jResp,'options.rumSettings.applicationId');
ClientTokenId := CkJsonObject_IntOf(jResp,'options.rumSettings.clientTokenId');
IsEnabled := CkJsonObject_BoolOf(jResp,'options.rumSettings.isEnabled');
Timezone := CkJsonObject__stringOf(jResp,'options.scheduling.timezone');
Tick_every := CkJsonObject_IntOf(jResp,'options.tick_every');
v_type := CkJsonObject__stringOf(jResp,'type');
message := CkJsonObject__stringOf(jResp,'message');
monitor_id := CkJsonObject_IntOf(jResp,'monitor_id');
public_id := CkJsonObject__stringOf(jResp,'public_id');
status := CkJsonObject__stringOf(jResp,'status');
subtype := CkJsonObject__stringOf(jResp,'subtype');
i := 0;
count_i := CkJsonObject_SizeOfArray(jResp,'config.assertions');
while i < count_i do
  begin
    CkJsonObject_putI(jResp,i);
    operator := CkJsonObject__stringOf(jResp,'config.assertions[i].operator');
    target := CkJsonObject_IntOf(jResp,'config.assertions[i].target');
    v_type := CkJsonObject__stringOf(jResp,'config.assertions[i].type');
    i := i + 1;
  end;

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

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

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

i := 0;
count_i := CkJsonObject_SizeOfArray(jResp,'options.scheduling.timeframes');
while i < count_i do
  begin
    CkJsonObject_putI(jResp,i);
    day := CkJsonObject_IntOf(jResp,'options.scheduling.timeframes[i].day');
    from := CkJsonObject__stringOf(jResp,'options.scheduling.timeframes[i].from');
    v_to := CkJsonObject__stringOf(jResp,'options.scheduling.timeframes[i].to');
    i := i + 1;
  end;

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;

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

Curl Command

curl -X POST
	-H "Content-Type: application/json"
	-H "Accept: application/json"
	-d '{
  "config": {
    "assertions": [
      {
        "operator": "lessThan",
        "target": 1000,
        "type": "responseTime"
      },
      {
        "operator": "is",
        "target": 200,
        "type": "statusCode"
      },
      {
        "operator": "is",
        "property": "content-type",
        "target": "text/html; charset=UTF-8",
        "type": "header"
      }
    ],
    "request": {
      "method": "GET",
      "url": "https://example.com"
    }
  },
  "locations": [
    "azure:eastus",
    "aws:eu-west-3"
  ],
  "message": "MY_NOTIFICATION_MESSAGE",
  "name": "MY_TEST_NAME",
  "options": {
    "min_failure_duration": 0,
    "min_location_failed": 1,
    "monitor_options": {
      "include_tags": true,
      "locked": false,
      "new_host_delay": 300,
      "notify_audit": false,
      "notify_no_data": false,
      "renotify_interval": 0
    },
    "tick_every": 60
  },
  "status": "live",
  "subtype": "http",
  "tags": [
    "env:production"
  ],
  "type": "api"
}'
https://api.app.ddog-gov.com/api/v1/synthetics/tests/api

Postman Collection Item JSON

{
  "name": "Create an API test",
  "request": {
    "method": "POST",
    "header": [
      {
        "key": "Content-Type",
        "value": "application/json"
      },
      {
        "key": "Accept",
        "value": "application/json"
      }
    ],
    "body": {
      "mode": "raw",
      "raw": "{\n  \"config\": {\n    \"assertions\": [\n      {\n        \"operator\": \"lessThan\",\n        \"target\": 1000,\n        \"type\": \"responseTime\"\n      },\n      {\n        \"operator\": \"is\",\n        \"target\": 200,\n        \"type\": \"statusCode\"\n      },\n      {\n        \"operator\": \"is\",\n        \"property\": \"content-type\",\n        \"target\": \"text/html; charset=UTF-8\",\n        \"type\": \"header\"\n      }\n    ],\n    \"request\": {\n      \"method\": \"GET\",\n      \"url\": \"https://example.com\"\n    }\n  },\n  \"locations\": [\n    \"azure:eastus\",\n    \"aws:eu-west-3\"\n  ],\n  \"message\": \"MY_NOTIFICATION_MESSAGE\",\n  \"name\": \"MY_TEST_NAME\",\n  \"options\": {\n    \"min_failure_duration\": 0,\n    \"min_location_failed\": 1,\n    \"monitor_options\": {\n      \"include_tags\": true,\n      \"locked\": false,\n      \"new_host_delay\": 300,\n      \"notify_audit\": false,\n      \"notify_no_data\": false,\n      \"renotify_interval\": 0\n    },\n    \"tick_every\": 60\n  },\n  \"status\": \"live\",\n  \"subtype\": \"http\",\n  \"tags\": [\n    \"env:production\"\n  ],\n  \"type\": \"api\"\n}",
      "options": {
        "raw": {
          "headerFamily": "json",
          "language": "json"
        }
      }
    },
    "url": {
      "raw": "{{baseUrl}}/api/v1/synthetics/tests/api",
      "host": [
        "{{baseUrl}}"
      ],
      "path": [
        "api",
        "v1",
        "synthetics",
        "tests",
        "api"
      ]
    },
    "description": "Create a Synthetic API test."
  },
  "response": [
    {
      "name": "OK - Returns the created test details.",
      "originalRequest": {
        "method": "POST",
        "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  \"config\": {\n    \"assertions\": [\n      {\n        \"operator\": \"lessThan\",\n        \"target\": 1000,\n        \"type\": \"responseTime\"\n      },\n      {\n        \"operator\": \"is\",\n        \"target\": 200,\n        \"type\": \"statusCode\"\n      },\n      {\n        \"operator\": \"is\",\n        \"property\": \"content-type\",\n        \"target\": \"text/html; charset=UTF-8\",\n        \"type\": \"header\"\n      }\n    ],\n    \"request\": {\n      \"method\": \"GET\",\n      \"url\": \"https://example.com\"\n    }\n  },\n  \"locations\": [\n    \"azure:eastus\",\n    \"aws:eu-west-3\"\n  ],\n  \"message\": \"MY_NOTIFICATION_MESSAGE\",\n  \"name\": \"MY_TEST_NAME\",\n  \"options\": {\n    \"min_failure_duration\": 0,\n    \"min_location_failed\": 1,\n    \"monitor_options\": {\n      \"include_tags\": true,\n      \"locked\": false,\n      \"new_host_delay\": 300,\n      \"notify_audit\": false,\n      \"notify_no_data\": false,\n      \"renotify_interval\": 0\n    },\n    \"tick_every\": 60\n  },\n  \"status\": \"live\",\n  \"subtype\": \"http\",\n  \"tags\": [\n    \"env:production\"\n  ],\n  \"type\": \"api\"\n}",
          "options": {
            "raw": {
              "headerFamily": "json",
              "language": "json"
            }
          }
        },
        "url": {
          "raw": "{{baseUrl}}/api/v1/synthetics/tests/api",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "api",
            "v1",
            "synthetics",
            "tests",
            "api"
          ]
        }
      },
      "status": "OK",
      "code": 200,
      "_postman_previewlanguage": "json",
      "header": [
        {
          "key": "Content-Type",
          "value": "application/json"
        }
      ],
      "cookie": [
      ],
      "body": "{\n  \"name\": \"Example test name\",\n  \"config\": {\n    \"assertions\": [\n      {\n        \"operator\": \"lessThan\",\n        \"target\": 1000,\n        \"type\": \"responseTime\"\n      }\n    ],\n    \"request\": {\n      \"method\": \"GET\",\n      \"url\": \"https://example.com\"\n    }\n  },\n  \"locations\": [\n    \"aws:eu-west-3\"\n  ],\n  \"options\": {\n    \"accept_self_signed\": true,\n    \"allow_insecure\": true,\n    \"checkCertificateRevocation\": true,\n    \"ci\": {\n      \"executionRule\": \"non_blocking\"\n    },\n    \"device_ids\": [\n      \"laptop_large\",\n      \"laptop_large\"\n    ],\n    \"disableCors\": false,\n    \"disableCsp\": false,\n    \"follow_redirects\": true,\n    \"httpVersion\": \"http1\",\n    \"ignoreServerCertificateError\": false,\n    \"initialNavigationTimeout\": 87780679,\n    \"min_failure_duration\": -32472759,\n    \"min_location_failed\": -5806955,\n    \"monitor_name\": \"et deserunt \",\n    \"monitor_options\": {\n      \"renotify_interval\": 834\n    },\n    \"monitor_priority\": 3,\n    \"noScreenshot\": false,\n    \"restricted_roles\": [\n      \"xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx\"\n    ],\n    \"retry\": {\n      \"count\": -50657150,\n      \"interval\": -91565669.0691471\n    },\n    \"rumSettings\": {\n      \"applicationId\": \"xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx\",\n      \"clientTokenId\": 12345,\n      \"isEnabled\": true\n    },\n    \"scheduling\": {\n      \"timeframes\": [\n        {\n          \"day\": 1,\n          \"from\": \"07:00\",\n          \"to\": \"16:00\"\n        },\n        {\n          \"day\": 3,\n          \"from\": \"07:00\",\n          \"to\": \"16:00\"\n        }\n      ],\n      \"timezone\": \"America/New_York\"\n    },\n    \"tick_every\": 384020\n  },\n  \"type\": \"api\",\n  \"message\": \"Notification message\",\n  \"monitor_id\": 12345678,\n  \"public_id\": \"123-abc-456\",\n  \"status\": \"live\",\n  \"subtype\": \"http\",\n  \"tags\": [\n    \"env:production\"\n  ]\n}"
    },
    {
      "name": "- JSON format is wrong\n- Creation failed",
      "originalRequest": {
        "method": "POST",
        "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  \"config\": {\n    \"assertions\": [\n      {\n        \"operator\": \"lessThan\",\n        \"target\": 1000,\n        \"type\": \"responseTime\"\n      },\n      {\n        \"operator\": \"is\",\n        \"target\": 200,\n        \"type\": \"statusCode\"\n      },\n      {\n        \"operator\": \"is\",\n        \"property\": \"content-type\",\n        \"target\": \"text/html; charset=UTF-8\",\n        \"type\": \"header\"\n      }\n    ],\n    \"request\": {\n      \"method\": \"GET\",\n      \"url\": \"https://example.com\"\n    }\n  },\n  \"locations\": [\n    \"azure:eastus\",\n    \"aws:eu-west-3\"\n  ],\n  \"message\": \"MY_NOTIFICATION_MESSAGE\",\n  \"name\": \"MY_TEST_NAME\",\n  \"options\": {\n    \"min_failure_duration\": 0,\n    \"min_location_failed\": 1,\n    \"monitor_options\": {\n      \"include_tags\": true,\n      \"locked\": false,\n      \"new_host_delay\": 300,\n      \"notify_audit\": false,\n      \"notify_no_data\": false,\n      \"renotify_interval\": 0\n    },\n    \"tick_every\": 60\n  },\n  \"status\": \"live\",\n  \"subtype\": \"http\",\n  \"tags\": [\n    \"env:production\"\n  ],\n  \"type\": \"api\"\n}",
          "options": {
            "raw": {
              "headerFamily": "json",
              "language": "json"
            }
          }
        },
        "url": {
          "raw": "{{baseUrl}}/api/v1/synthetics/tests/api",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "api",
            "v1",
            "synthetics",
            "tests",
            "api"
          ]
        }
      },
      "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": "Test quota is reached",
      "originalRequest": {
        "method": "POST",
        "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  \"config\": {\n    \"assertions\": [\n      {\n        \"operator\": \"lessThan\",\n        \"target\": 1000,\n        \"type\": \"responseTime\"\n      },\n      {\n        \"operator\": \"is\",\n        \"target\": 200,\n        \"type\": \"statusCode\"\n      },\n      {\n        \"operator\": \"is\",\n        \"property\": \"content-type\",\n        \"target\": \"text/html; charset=UTF-8\",\n        \"type\": \"header\"\n      }\n    ],\n    \"request\": {\n      \"method\": \"GET\",\n      \"url\": \"https://example.com\"\n    }\n  },\n  \"locations\": [\n    \"azure:eastus\",\n    \"aws:eu-west-3\"\n  ],\n  \"message\": \"MY_NOTIFICATION_MESSAGE\",\n  \"name\": \"MY_TEST_NAME\",\n  \"options\": {\n    \"min_failure_duration\": 0,\n    \"min_location_failed\": 1,\n    \"monitor_options\": {\n      \"include_tags\": true,\n      \"locked\": false,\n      \"new_host_delay\": 300,\n      \"notify_audit\": false,\n      \"notify_no_data\": false,\n      \"renotify_interval\": 0\n    },\n    \"tick_every\": 60\n  },\n  \"status\": \"live\",\n  \"subtype\": \"http\",\n  \"tags\": [\n    \"env:production\"\n  ],\n  \"type\": \"api\"\n}",
          "options": {
            "raw": {
              "headerFamily": "json",
              "language": "json"
            }
          }
        },
        "url": {
          "raw": "{{baseUrl}}/api/v1/synthetics/tests/api",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "api",
            "v1",
            "synthetics",
            "tests",
            "api"
          ]
        }
      },
      "status": "Payment Required",
      "code": 402,
      "_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": "POST",
        "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  \"config\": {\n    \"assertions\": [\n      {\n        \"operator\": \"lessThan\",\n        \"target\": 1000,\n        \"type\": \"responseTime\"\n      },\n      {\n        \"operator\": \"is\",\n        \"target\": 200,\n        \"type\": \"statusCode\"\n      },\n      {\n        \"operator\": \"is\",\n        \"property\": \"content-type\",\n        \"target\": \"text/html; charset=UTF-8\",\n        \"type\": \"header\"\n      }\n    ],\n    \"request\": {\n      \"method\": \"GET\",\n      \"url\": \"https://example.com\"\n    }\n  },\n  \"locations\": [\n    \"azure:eastus\",\n    \"aws:eu-west-3\"\n  ],\n  \"message\": \"MY_NOTIFICATION_MESSAGE\",\n  \"name\": \"MY_TEST_NAME\",\n  \"options\": {\n    \"min_failure_duration\": 0,\n    \"min_location_failed\": 1,\n    \"monitor_options\": {\n      \"include_tags\": true,\n      \"locked\": false,\n      \"new_host_delay\": 300,\n      \"notify_audit\": false,\n      \"notify_no_data\": false,\n      \"renotify_interval\": 0\n    },\n    \"tick_every\": 60\n  },\n  \"status\": \"live\",\n  \"subtype\": \"http\",\n  \"tags\": [\n    \"env:production\"\n  ],\n  \"type\": \"api\"\n}",
          "options": {
            "raw": {
              "headerFamily": "json",
              "language": "json"
            }
          }
        },
        "url": {
          "raw": "{{baseUrl}}/api/v1/synthetics/tests/api",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "api",
            "v1",
            "synthetics",
            "tests",
            "api"
          ]
        }
      },
      "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": "POST",
        "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  \"config\": {\n    \"assertions\": [\n      {\n        \"operator\": \"lessThan\",\n        \"target\": 1000,\n        \"type\": \"responseTime\"\n      },\n      {\n        \"operator\": \"is\",\n        \"target\": 200,\n        \"type\": \"statusCode\"\n      },\n      {\n        \"operator\": \"is\",\n        \"property\": \"content-type\",\n        \"target\": \"text/html; charset=UTF-8\",\n        \"type\": \"header\"\n      }\n    ],\n    \"request\": {\n      \"method\": \"GET\",\n      \"url\": \"https://example.com\"\n    }\n  },\n  \"locations\": [\n    \"azure:eastus\",\n    \"aws:eu-west-3\"\n  ],\n  \"message\": \"MY_NOTIFICATION_MESSAGE\",\n  \"name\": \"MY_TEST_NAME\",\n  \"options\": {\n    \"min_failure_duration\": 0,\n    \"min_location_failed\": 1,\n    \"monitor_options\": {\n      \"include_tags\": true,\n      \"locked\": false,\n      \"new_host_delay\": 300,\n      \"notify_audit\": false,\n      \"notify_no_data\": false,\n      \"renotify_interval\": 0\n    },\n    \"tick_every\": 60\n  },\n  \"status\": \"live\",\n  \"subtype\": \"http\",\n  \"tags\": [\n    \"env:production\"\n  ],\n  \"type\": \"api\"\n}",
          "options": {
            "raw": {
              "headerFamily": "json",
              "language": "json"
            }
          }
        },
        "url": {
          "raw": "{{baseUrl}}/api/v1/synthetics/tests/api",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "api",
            "v1",
            "synthetics",
            "tests",
            "api"
          ]
        }
      },
      "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}"
    }
  ]
}