Chilkat Online Tools

C# / ForgeRock Identity Cloud Collection / Step 1: Create 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.

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.

// {
//   "userName": "{{managedUsername}}",
//   "sn": "{{$randomLastName}}",
//   "givenName": "{{$randomFirstName}}",
//   "mail": "{{managedUsername}}@postman.example.com",
//   "telephoneNumber": "{{$randomPhoneNumber}}",
//   "password": "{{$randomPassword}}"
// }

Chilkat.JsonObject json = new Chilkat.JsonObject();
json.UpdateString("userName","{{managedUsername}}");
json.UpdateString("sn","{{$randomLastName}}");
json.UpdateString("givenName","{{$randomFirstName}}");
json.UpdateString("mail","{{managedUsername}}@postman.example.com");
json.UpdateString("telephoneNumber","{{$randomPhoneNumber}}");
json.UpdateString("password","{{$randomPassword}}");

// Adds the "Authorization: Bearer <access_token>" header.
http.AuthToken = "<access_token>";

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

Chilkat.HttpResponse resp = http.PTextSb("PUT","https://<tenant-name>.forgeblocks.com/openidm/managed/alpha_user/:_id",sbRequestBody,"utf-8","application/json",false,false);
if (http.LastMethodSuccess == false) {
    Debug.WriteLine(http.LastErrorText);
    return;
}

Debug.WriteLine(Convert.ToString(resp.StatusCode));
Debug.WriteLine(resp.BodyStr);

Curl Command

curl -X PUT
	-H "Authorization: Bearer <access_token>"
	-d '{
  "userName": "{{managedUsername}}",
  "sn": "{{$randomLastName}}",
  "givenName": "{{$randomFirstName}}",
  "mail": "{{managedUsername}}@postman.example.com",
  "telephoneNumber": "{{$randomPhoneNumber}}",
  "password": "{{$randomPassword}}"
}'
https://<tenant-name>.forgeblocks.com/openidm/managed/alpha_user/:_id

Postman Collection Item JSON

{
  "name": "Step 1: Create a Managed Identity",
  "event": [
    {
      "listen": "prerequest",
      "script": {
        "exec": [
          "pm.globals.set(\"managedUserId\", pm.globals.replaceIn('{{$guid}}'))",
          "pm.globals.set(\"managedUsername\", pm.globals.replaceIn('{{$randomUserName}}'))"
        ],
        "type": "text/javascript"
      }
    }
  ],
  "request": {
    "method": "PUT",
    "header": [
    ],
    "body": {
      "mode": "raw",
      "raw": "{\n  \"userName\": \"{{managedUsername}}\",\n  \"sn\": \"{{$randomLastName}}\",\n  \"givenName\": \"{{$randomFirstName}}\",\n  \"mail\": \"{{managedUsername}}@postman.example.com\",\n  \"telephoneNumber\": \"{{$randomPhoneNumber}}\",\n  \"password\": \"{{$randomPassword}}\"\n}",
      "options": {
        "raw": {
          "language": "json"
        }
      }
    },
    "url": {
      "raw": "{{platformUrl}}/openidm/managed/alpha_user/:_id",
      "host": [
        "{{platformUrl}}"
      ],
      "path": [
        "openidm",
        "managed",
        "alpha_user",
        ":_id"
      ],
      "variable": [
        {
          "key": "_id",
          "value": "{{managedUserId}}"
        }
      ]
    }
  },
  "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": ""
    }
  ]
}