Chilkat Online Tools

Go / ForgeRock Identity Cloud Collection / Step 3: Update a Managed Identity

Back to Collection Items

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

    http := chilkat.NewHttp()
    var success bool

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

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

    // [
    //   {
    //     "operation": "replace",
    //     "field": "/telephoneNumber",
    //     "value": "{{$randomPhoneNumber}}"
    //   }
    // ]

    jarr := chilkat.NewJsonArray()

    jarr.AddObjectAt(-1)
    jsonObj_1 := jarr.ObjectAt(jarr.Size() - 1)
    jsonObj_1.UpdateString("operation","replace")
    jsonObj_1.UpdateString("field","/telephoneNumber")
    jsonObj_1.UpdateString("value","{{$randomPhoneNumber}}")
    jsonObj_1.DisposeJsonObject()

    http.SetRequestHeader("X-OpenIDM-Username","{{adminUsername}}")
    http.SetRequestHeader("Accept-API-Version","resource=1.0")
    http.SetRequestHeader("X-OpenIDM-Password","{{adminPassword}}")
    // Adds the "Authorization: Bearer <access_token>" header.
    http.SetAuthToken("<access_token>")

    sbRequestBody := chilkat.NewStringBuilder()
    jarr.EmitSb(sbRequestBody)

    resp := http.PTextSb("POST","{{managedUsername}}",sbRequestBody,"utf-8","application/json",false,false)
    if http.LastMethodSuccess() == false {
        fmt.Println(http.LastErrorText())
        http.DisposeHttp()
        jarr.DisposeJsonArray()
        sbRequestBody.DisposeStringBuilder()
        return
    }

    fmt.Println(resp.StatusCode())
    fmt.Println(resp.BodyStr())
    resp.DisposeHttpResponse()

    http.DisposeHttp()
    jarr.DisposeJsonArray()
    sbRequestBody.DisposeStringBuilder()

Curl Command

curl -X POST
	-H "Authorization: Bearer <access_token>"
	-H "Accept-API-Version: resource=1.0"
	-H "X-OpenIDM-Username: {{adminUsername}}"
	-H "X-OpenIDM-Password: {{adminPassword}}"
	-d '[
    {
        "operation": "replace",
        "field": "/telephoneNumber",
        "value": "{{$randomPhoneNumber}}"
    }
]'
https://<tenant-name>.forgeblocks.com/openidm/managed/alpha_user?_action=patch&_queryFilter=userName eq "{{managedUsername}}"

Postman Collection Item JSON

{
  "name": "Step 3: Update a Managed Identity",
  "event": [
    {
      "listen": "prerequest",
      "script": {
        "exec": [
          ""
        ],
        "type": "text/javascript"
      }
    },
    {
      "listen": "test",
      "script": {
        "exec": [
          "const jsonData = JSON.parse(responseBody);",
          "if(jsonData._id && jsonData._id != \"\"){",
          "    pm.globals.set(\"managedUserId\", jsonData._id);",
          "}"
        ],
        "type": "text/javascript"
      }
    }
  ],
  "request": {
    "method": "POST",
    "header": [
      {
        "description": "(Required) ",
        "key": "Accept-API-Version",
        "value": "resource=1.0",
        "disabled": true
      },
      {
        "key": "X-OpenIDM-Username",
        "type": "text",
        "value": "{{adminUsername}}"
      },
      {
        "key": "X-OpenIDM-Password",
        "type": "text",
        "value": "{{adminPassword}}"
      }
    ],
    "body": {
      "mode": "raw",
      "raw": "[\n    {\n        \"operation\": \"replace\",\n        \"field\": \"/telephoneNumber\",\n        \"value\": \"{{$randomPhoneNumber}}\"\n    }\n]",
      "options": {
        "raw": {
          "language": "json"
        }
      }
    },
    "url": {
      "raw": "{{platformUrl}}/openidm/managed/alpha_user?_action=patch&_queryFilter=userName eq \"{{managedUsername}}\"",
      "host": [
        "{{platformUrl}}"
      ],
      "path": [
        "openidm",
        "managed",
        "alpha_user"
      ],
      "query": [
        {
          "key": "_action",
          "value": "patch"
        },
        {
          "key": "_queryFilter",
          "value": "userName eq \"{{managedUsername}}\""
        },
        {
          "key": "_fields",
          "value": "",
          "description": "Optional parameter containing a comma separated list of field references specifying which fields of the targeted JSON resource should be returned.",
          "disabled": true
        }
      ]
    },
    "description": "Update the details, in this case; the telephone number, of a managed identity."
  },
  "response": [
    {
      "name": "Success",
      "originalRequest": {
        "method": "GET",
        "header": [
          {
            "description": "(Required) ",
            "key": "Accept-API-Version",
            "value": "<string>"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/openidm/managed/user#1.0_query_filter?_fields=&_prettyPrint=true&_queryFilter=<string>&_pageSize=<integer>&_totalPagedResultsPolicy=<string>&_sortKeys=<string>",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "openidm",
            "managed",
            "user"
          ],
          "hash": "1.0_query_filter?_fields=&_prettyPrint=true&_queryFilter=<string>&_pageSize=<integer>&_totalPagedResultsPolicy=<string>&_sortKeys=<string>"
        }
      },
      "status": "OK",
      "code": 200,
      "_postman_previewlanguage": "text",
      "header": [
        {
          "key": "Content-Type",
          "value": "*/*"
        }
      ],
      "cookie": [
      ],
      "body": ""
    }
  ]
}