Chilkat Online Tools

C# / Datadog API Collection / Update your organization

Back to Collection Items

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

Chilkat.Http http = new Chilkat.Http();
bool success;

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

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

// {
//   "billing": {
//     "type": "parent_billing"
//   },
//   "created": "2019-09-26T17:28:28Z",
//   "description": "some description",
//   "name": "New child org",
//   "public_id": "abcdef12345",
//   "settings": {
//     "private_widget_share": false,
//     "saml": {
//       "enabled": false
//     },
//     "saml_autocreate_access_role": "ro",
//     "saml_autocreate_users_domains": {
//       "domains": [
//         "example.com",
//         "example.com"
//       ],
//       "enabled": false
//     },
//     "saml_can_be_enabled": false,
//     "saml_idp_endpoint": "https://my.saml.endpoint",
//     "saml_idp_initiated_login": {
//       "enabled": false
//     },
//     "saml_idp_metadata_uploaded": false,
//     "saml_login_url": "https://my.saml.login.url",
//     "saml_strict_mode": {
//       "enabled": false
//     }
//   },
//   "subscription": {
//     "type": "pro"
//   },
//   "trial": false
// }

Chilkat.JsonObject json = new Chilkat.JsonObject();
json.UpdateString("billing.type","parent_billing");
json.UpdateString("created","2019-09-26T17:28:28Z");
json.UpdateString("description","some description");
json.UpdateString("name","New child org");
json.UpdateString("public_id","abcdef12345");
json.UpdateBool("settings.private_widget_share",false);
json.UpdateBool("settings.saml.enabled",false);
json.UpdateString("settings.saml_autocreate_access_role","ro");
json.UpdateString("settings.saml_autocreate_users_domains.domains[0]","example.com");
json.UpdateString("settings.saml_autocreate_users_domains.domains[1]","example.com");
json.UpdateBool("settings.saml_autocreate_users_domains.enabled",false);
json.UpdateBool("settings.saml_can_be_enabled",false);
json.UpdateString("settings.saml_idp_endpoint","https://my.saml.endpoint");
json.UpdateBool("settings.saml_idp_initiated_login.enabled",false);
json.UpdateBool("settings.saml_idp_metadata_uploaded",false);
json.UpdateString("settings.saml_login_url","https://my.saml.login.url");
json.UpdateBool("settings.saml_strict_mode.enabled",false);
json.UpdateString("subscription.type","pro");
json.UpdateBool("trial",false);

http.SetRequestHeader("Content-Type","application/json");
http.SetRequestHeader("Accept","application/json");

Chilkat.StringBuilder sbRequestBody = new Chilkat.StringBuilder();
json.EmitSb(sbRequestBody);

Chilkat.HttpResponse resp = http.PTextSb("PUT","https://api.app.ddog-gov.com/api/v1/org/:public_id",sbRequestBody,"utf-8","application/json",false,false);
if (http.LastMethodSuccess == false) {
    Debug.WriteLine(http.LastErrorText);
    return;
}

Chilkat.StringBuilder sbResponseBody = new Chilkat.StringBuilder();
resp.GetBodySb(sbResponseBody);

Chilkat.JsonObject jResp = new Chilkat.JsonObject();
jResp.LoadSb(sbResponseBody);
jResp.EmitCompact = false;

Debug.WriteLine("Response Body:");
Debug.WriteLine(jResp.Emit());

int respStatusCode = resp.StatusCode;
Debug.WriteLine("Response Status Code = " + Convert.ToString(respStatusCode));
if (respStatusCode >= 400) {
    Debug.WriteLine("Response Header:");
    Debug.WriteLine(resp.Header);
    Debug.WriteLine("Failed.");

    return;
}

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

// {
//   "org": {
//     "billing": {
//       "type": "parent_billing"
//     },
//     "created": "2019-09-26T17:28:28Z",
//     "description": "some description",
//     "name": "New child org",
//     "public_id": "abcdef12345",
//     "settings": {
//       "private_widget_share": false,
//       "saml": {
//         "enabled": false
//       },
//       "saml_autocreate_access_role": "ro",
//       "saml_autocreate_users_domains": {
//         "domains": [
//           "example.com",
//           "example.com"
//         ],
//         "enabled": false
//       },
//       "saml_can_be_enabled": false,
//       "saml_idp_endpoint": "https://my.saml.endpoint",
//       "saml_idp_initiated_login": {
//         "enabled": false
//       },
//       "saml_idp_metadata_uploaded": false,
//       "saml_login_url": "https://my.saml.login.url",
//       "saml_strict_mode": {
//         "enabled": false
//       }
//     },
//     "subscription": {
//       "type": "pro"
//     },
//     "trial": false
//   }
// }

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

string strVal;

string v_Type = jResp.StringOf("org.billing.type");
string Created = jResp.StringOf("org.created");
string Description = jResp.StringOf("org.description");
string Name = jResp.StringOf("org.name");
string Public_id = jResp.StringOf("org.public_id");
bool Private_widget_share = jResp.BoolOf("org.settings.private_widget_share");
bool Enabled = jResp.BoolOf("org.settings.saml.enabled");
string Saml_autocreate_access_role = jResp.StringOf("org.settings.saml_autocreate_access_role");
bool Saml_autocreate_users_domainsEnabled = jResp.BoolOf("org.settings.saml_autocreate_users_domains.enabled");
bool Saml_can_be_enabled = jResp.BoolOf("org.settings.saml_can_be_enabled");
string Saml_idp_endpoint = jResp.StringOf("org.settings.saml_idp_endpoint");
bool Saml_idp_initiated_loginEnabled = jResp.BoolOf("org.settings.saml_idp_initiated_login.enabled");
bool Saml_idp_metadata_uploaded = jResp.BoolOf("org.settings.saml_idp_metadata_uploaded");
string Saml_login_url = jResp.StringOf("org.settings.saml_login_url");
bool Saml_strict_modeEnabled = jResp.BoolOf("org.settings.saml_strict_mode.enabled");
string SubscriptionType = jResp.StringOf("org.subscription.type");
bool Trial = jResp.BoolOf("org.trial");
int i = 0;
int count_i = jResp.SizeOfArray("org.settings.saml_autocreate_users_domains.domains");
while (i < count_i) {
    jResp.I = i;
    strVal = jResp.StringOf("org.settings.saml_autocreate_users_domains.domains[i]");
    i = i + 1;
}

Curl Command

curl -X PUT
	-H "Content-Type: application/json"
	-H "Accept: application/json"
	-d '{
  "billing": {
    "type": "parent_billing"
  },
  "created": "2019-09-26T17:28:28Z",
  "description": "some description",
  "name": "New child org",
  "public_id": "abcdef12345",
  "settings": {
    "private_widget_share": false,
    "saml": {
      "enabled": false
    },
    "saml_autocreate_access_role": "ro",
    "saml_autocreate_users_domains": {
      "domains": [
        "example.com",
        "example.com"
      ],
      "enabled": false
    },
    "saml_can_be_enabled": false,
    "saml_idp_endpoint": "https://my.saml.endpoint",
    "saml_idp_initiated_login": {
      "enabled": false
    },
    "saml_idp_metadata_uploaded": false,
    "saml_login_url": "https://my.saml.login.url",
    "saml_strict_mode": {
      "enabled": false
    }
  },
  "subscription": {
    "type": "pro"
  },
  "trial": false
}'
https://api.app.ddog-gov.com/api/v1/org/:public_id

Postman Collection Item JSON

{
  "name": "Update your organization",
  "request": {
    "method": "PUT",
    "header": [
      {
        "key": "Content-Type",
        "value": "application/json"
      },
      {
        "key": "Accept",
        "value": "application/json"
      }
    ],
    "body": {
      "mode": "raw",
      "raw": "{\n  \"billing\": {\n    \"type\": \"parent_billing\"\n  },\n  \"created\": \"2019-09-26T17:28:28Z\",\n  \"description\": \"some description\",\n  \"name\": \"New child org\",\n  \"public_id\": \"abcdef12345\",\n  \"settings\": {\n    \"private_widget_share\": false,\n    \"saml\": {\n      \"enabled\": false\n    },\n    \"saml_autocreate_access_role\": \"ro\",\n    \"saml_autocreate_users_domains\": {\n      \"domains\": [\n        \"example.com\",\n        \"example.com\"\n      ],\n      \"enabled\": false\n    },\n    \"saml_can_be_enabled\": false,\n    \"saml_idp_endpoint\": \"https://my.saml.endpoint\",\n    \"saml_idp_initiated_login\": {\n      \"enabled\": false\n    },\n    \"saml_idp_metadata_uploaded\": false,\n    \"saml_login_url\": \"https://my.saml.login.url\",\n    \"saml_strict_mode\": {\n      \"enabled\": false\n    }\n  },\n  \"subscription\": {\n    \"type\": \"pro\"\n  },\n  \"trial\": false\n}",
      "options": {
        "raw": {
          "headerFamily": "json",
          "language": "json"
        }
      }
    },
    "url": {
      "raw": "{{baseUrl}}/api/v1/org/:public_id",
      "host": [
        "{{baseUrl}}"
      ],
      "path": [
        "api",
        "v1",
        "org",
        ":public_id"
      ],
      "variable": [
        {
          "key": "public_id",
          "value": "abc123"
        }
      ]
    },
    "description": "Update your organization."
  },
  "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  \"billing\": {\n    \"type\": \"parent_billing\"\n  },\n  \"created\": \"2019-09-26T17:28:28Z\",\n  \"description\": \"some description\",\n  \"name\": \"New child org\",\n  \"public_id\": \"abcdef12345\",\n  \"settings\": {\n    \"private_widget_share\": false,\n    \"saml\": {\n      \"enabled\": false\n    },\n    \"saml_autocreate_access_role\": \"ro\",\n    \"saml_autocreate_users_domains\": {\n      \"domains\": [\n        \"example.com\",\n        \"example.com\"\n      ],\n      \"enabled\": false\n    },\n    \"saml_can_be_enabled\": false,\n    \"saml_idp_endpoint\": \"https://my.saml.endpoint\",\n    \"saml_idp_initiated_login\": {\n      \"enabled\": false\n    },\n    \"saml_idp_metadata_uploaded\": false,\n    \"saml_login_url\": \"https://my.saml.login.url\",\n    \"saml_strict_mode\": {\n      \"enabled\": false\n    }\n  },\n  \"subscription\": {\n    \"type\": \"pro\"\n  },\n  \"trial\": false\n}",
          "options": {
            "raw": {
              "headerFamily": "json",
              "language": "json"
            }
          }
        },
        "url": {
          "raw": "{{baseUrl}}/api/v1/org/:public_id",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "api",
            "v1",
            "org",
            ":public_id"
          ],
          "variable": [
            {
              "key": "public_id"
            }
          ]
        }
      },
      "status": "OK",
      "code": 200,
      "_postman_previewlanguage": "json",
      "header": [
        {
          "key": "Content-Type",
          "value": "application/json"
        }
      ],
      "cookie": [
      ],
      "body": "{\n  \"org\": {\n    \"billing\": {\n      \"type\": \"parent_billing\"\n    },\n    \"created\": \"2019-09-26T17:28:28Z\",\n    \"description\": \"some description\",\n    \"name\": \"New child org\",\n    \"public_id\": \"abcdef12345\",\n    \"settings\": {\n      \"private_widget_share\": false,\n      \"saml\": {\n        \"enabled\": false\n      },\n      \"saml_autocreate_access_role\": \"ro\",\n      \"saml_autocreate_users_domains\": {\n        \"domains\": [\n          \"example.com\",\n          \"example.com\"\n        ],\n        \"enabled\": false\n      },\n      \"saml_can_be_enabled\": false,\n      \"saml_idp_endpoint\": \"https://my.saml.endpoint\",\n      \"saml_idp_initiated_login\": {\n        \"enabled\": false\n      },\n      \"saml_idp_metadata_uploaded\": false,\n      \"saml_login_url\": \"https://my.saml.login.url\",\n      \"saml_strict_mode\": {\n        \"enabled\": false\n      }\n    },\n    \"subscription\": {\n      \"type\": \"pro\"\n    },\n    \"trial\": false\n  }\n}"
    },
    {
      "name": "Bad 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  \"billing\": {\n    \"type\": \"parent_billing\"\n  },\n  \"created\": \"2019-09-26T17:28:28Z\",\n  \"description\": \"some description\",\n  \"name\": \"New child org\",\n  \"public_id\": \"abcdef12345\",\n  \"settings\": {\n    \"private_widget_share\": false,\n    \"saml\": {\n      \"enabled\": false\n    },\n    \"saml_autocreate_access_role\": \"ro\",\n    \"saml_autocreate_users_domains\": {\n      \"domains\": [\n        \"example.com\",\n        \"example.com\"\n      ],\n      \"enabled\": false\n    },\n    \"saml_can_be_enabled\": false,\n    \"saml_idp_endpoint\": \"https://my.saml.endpoint\",\n    \"saml_idp_initiated_login\": {\n      \"enabled\": false\n    },\n    \"saml_idp_metadata_uploaded\": false,\n    \"saml_login_url\": \"https://my.saml.login.url\",\n    \"saml_strict_mode\": {\n      \"enabled\": false\n    }\n  },\n  \"subscription\": {\n    \"type\": \"pro\"\n  },\n  \"trial\": false\n}",
          "options": {
            "raw": {
              "headerFamily": "json",
              "language": "json"
            }
          }
        },
        "url": {
          "raw": "{{baseUrl}}/api/v1/org/:public_id",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "api",
            "v1",
            "org",
            ":public_id"
          ],
          "variable": [
            {
              "key": "public_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  \"billing\": {\n    \"type\": \"parent_billing\"\n  },\n  \"created\": \"2019-09-26T17:28:28Z\",\n  \"description\": \"some description\",\n  \"name\": \"New child org\",\n  \"public_id\": \"abcdef12345\",\n  \"settings\": {\n    \"private_widget_share\": false,\n    \"saml\": {\n      \"enabled\": false\n    },\n    \"saml_autocreate_access_role\": \"ro\",\n    \"saml_autocreate_users_domains\": {\n      \"domains\": [\n        \"example.com\",\n        \"example.com\"\n      ],\n      \"enabled\": false\n    },\n    \"saml_can_be_enabled\": false,\n    \"saml_idp_endpoint\": \"https://my.saml.endpoint\",\n    \"saml_idp_initiated_login\": {\n      \"enabled\": false\n    },\n    \"saml_idp_metadata_uploaded\": false,\n    \"saml_login_url\": \"https://my.saml.login.url\",\n    \"saml_strict_mode\": {\n      \"enabled\": false\n    }\n  },\n  \"subscription\": {\n    \"type\": \"pro\"\n  },\n  \"trial\": false\n}",
          "options": {
            "raw": {
              "headerFamily": "json",
              "language": "json"
            }
          }
        },
        "url": {
          "raw": "{{baseUrl}}/api/v1/org/:public_id",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "api",
            "v1",
            "org",
            ":public_id"
          ],
          "variable": [
            {
              "key": "public_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  \"billing\": {\n    \"type\": \"parent_billing\"\n  },\n  \"created\": \"2019-09-26T17:28:28Z\",\n  \"description\": \"some description\",\n  \"name\": \"New child org\",\n  \"public_id\": \"abcdef12345\",\n  \"settings\": {\n    \"private_widget_share\": false,\n    \"saml\": {\n      \"enabled\": false\n    },\n    \"saml_autocreate_access_role\": \"ro\",\n    \"saml_autocreate_users_domains\": {\n      \"domains\": [\n        \"example.com\",\n        \"example.com\"\n      ],\n      \"enabled\": false\n    },\n    \"saml_can_be_enabled\": false,\n    \"saml_idp_endpoint\": \"https://my.saml.endpoint\",\n    \"saml_idp_initiated_login\": {\n      \"enabled\": false\n    },\n    \"saml_idp_metadata_uploaded\": false,\n    \"saml_login_url\": \"https://my.saml.login.url\",\n    \"saml_strict_mode\": {\n      \"enabled\": false\n    }\n  },\n  \"subscription\": {\n    \"type\": \"pro\"\n  },\n  \"trial\": false\n}",
          "options": {
            "raw": {
              "headerFamily": "json",
              "language": "json"
            }
          }
        },
        "url": {
          "raw": "{{baseUrl}}/api/v1/org/:public_id",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "api",
            "v1",
            "org",
            ":public_id"
          ],
          "variable": [
            {
              "key": "public_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}"
    }
  ]
}