Go / MongoDB Atlas / Rename an Organization
        
        Back to Collection Items
            // This example assumes the Chilkat API to have been previously unlocked.
    // See Global_Ref.html">Global_Ref.html">Global_Ref.html">Global_Ref.html">Global_Ref.html">Global_Ref.html">Global_Ref.html">Global Unlock Sample for sample code.
    http := Http_Ref.html">Http_Ref.html">Http_Ref.html">Http_Ref.html">Http_Ref.html">Http_Ref.html">Http_Ref.html">chilkat.NewHttp()
    var success bool
    http.SetDigestAuth(true)
    http.SetLogin("username")
    http.SetPassword("password")
    // Use this online tool to generate code from sample JSON: Generate Code to Create JSON
    // The following JSON is sent in the request body.
    // {
    //   "name": "MyAtlasOrg"
    // }
    json := JsonObject_Ref.html">JsonObject_Ref.html">JsonObject_Ref.html">JsonObject_Ref.html">JsonObject_Ref.html">JsonObject_Ref.html">JsonObject_Ref.html">chilkat.NewJsonObject()
    json.UpdateString("name","MyAtlasOrg")
    sbRequestBody := StringBuilder_Ref.html">StringBuilder_Ref.html">StringBuilder_Ref.html">StringBuilder_Ref.html">StringBuilder_Ref.html">StringBuilder_Ref.html">StringBuilder_Ref.html">chilkat.NewStringBuilder()
    json.EmitSb(sbRequestBody)
    resp := HttpResponse_Ref.html">HttpResponse_Ref.html">HttpResponse_Ref.html">HttpResponse_Ref.html">HttpResponse_Ref.html">HttpResponse_Ref.html">HttpResponse_Ref.html">chilkat.NewHttpResponse()
    success = http.HttpSb("PATCH","https://domain.com/api/atlas/{{version}}/orgs/{{ORG-ID}}",sbRequestBody,"utf-8","application/json",resp)
    if success == false {
        fmt.Println(http.LastErrorText())
        http.DisposeHttp()
        json.DisposeJsonObject()
        sbRequestBody.DisposeStringBuilder()
        resp.DisposeHttpResponse()
        return
    }
    fmt.Println(resp.StatusCode())
    fmt.Println(resp.BodyStr())
    http.DisposeHttp()
    json.DisposeJsonObject()
    sbRequestBody.DisposeStringBuilder()
    resp.DisposeHttpResponse()
        Curl Command
        curl -X PATCH
	--digest -u 'username:password'
	-d '{"name":"MyAtlasOrg"}'
https://domain.com/api/atlas/{{version}}/orgs/{{ORG-ID}}
        Postman Collection Item JSON
        {
  "name": "Rename an Organization",
  "request": {
    "method": "PATCH",
    "header": [
    ],
    "body": {
      "mode": "raw",
      "raw": "{\"name\":\"MyAtlasOrg\"}",
      "options": {
        "raw": {
          "language": "json"
        }
      }
    },
    "url": {
      "raw": "{{base_url}}/api/atlas/{{version}}/orgs/{{ORG-ID}}",
      "host": [
        "{{base_url}}"
      ],
      "path": [
        "api",
        "atlas",
        "{{version}}",
        "orgs",
        "{{ORG-ID}}"
      ]
    },
    "description": "https://docs.atlas.mongodb.com/reference/api/organization-get-all/"
  },
  "response": [
  ]
}