Chilkat Online Tools

VBScript / ForgeRock Identity Cloud Collection / Step 1: Create a Managed Identity

Back to Collection Items

Dim fso, outFile
Set fso = CreateObject("Scripting.FileSystemObject")
Set outFile = fso.CreateTextFile("output.txt", True)

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

set http = CreateObject("Chilkat_9_5_0.Http")

' 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}}"
' }

set json = CreateObject("Chilkat_9_5_0.JsonObject")
success = json.UpdateString("userName","{{managedUsername}}")
success = json.UpdateString("sn","{{$randomLastName}}")
success = json.UpdateString("givenName","{{$randomFirstName}}")
success = json.UpdateString("mail","{{managedUsername}}@postman.example.com")
success = json.UpdateString("telephoneNumber","{{$randomPhoneNumber}}")
success = json.UpdateString("password","{{$randomPassword}}")

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

' resp is a Chilkat_9_5_0.HttpResponse
Set resp = http.PostJson3("https://<tenant-name>.forgeblocks.com/openidm/managed/alpha_user?_action=create","application/json",json)
If (http.LastMethodSuccess = 0) Then
    outFile.WriteLine(http.LastErrorText)
    WScript.Quit
End If

outFile.WriteLine(resp.StatusCode)
outFile.WriteLine(resp.BodyStr)


outFile.Close

Curl Command

curl -X POST
	-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?_action=create

Postman Collection Item JSON

{
  "name": "Step 1: Create a Managed Identity",
  "event": [
    {
      "listen": "prerequest",
      "script": {
        "exec": [
          "pm.globals.set(\"managedUsername\", pm.globals.replaceIn('{{$randomUserName}}'))"
        ],
        "type": "text/javascript"
      }
    },
    {
      "listen": "test",
      "script": {
        "exec": [
          "const jsonData = JSON.parse(responseBody);",
          "if(jsonData._id && jsonData._id != \"\"){",
          "    pm.globals.set(\"managedUserId\", jsonData._id);",
          "}",
          "if(jsonData.userName && jsonData.userName != \"\"){",
          "    pm.globals.set(\"managedUsername\", jsonData.userName);",
          "}"
        ],
        "type": "text/javascript"
      }
    }
  ],
  "request": {
    "method": "POST",
    "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?_action=create",
      "host": [
        "{{platformUrl}}"
      ],
      "path": [
        "openidm",
        "managed",
        "alpha_user"
      ],
      "query": [
        {
          "key": "_action",
          "value": "create"
        }
      ]
    },
    "description": "Create a new 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": ""
    }
  ]
}