Chilkat Online Tools

Objective-C / ForgeRock Identity Cloud Collection / Step 1: Create a Managed Identity

Back to Collection Items

#import <CkoHttp.h>
#import <CkoJsonObject.h>
#import <CkoStringBuilder.h>
#import <CkoHttpResponse.h>

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

CkoHttp *http = [[CkoHttp alloc] init];
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}}"
// }

CkoJsonObject *json = [[CkoJsonObject alloc] init];
[json UpdateString: @"userName" value: @"{{managedUsername}}"];
[json UpdateString: @"sn" value: @"{{$randomLastName}}"];
[json UpdateString: @"givenName" value: @"{{$randomFirstName}}"];
[json UpdateString: @"mail" value: @"{{managedUsername}}@postman.example.com"];
[json UpdateString: @"telephoneNumber" value: @"{{$randomPhoneNumber}}"];
[json UpdateString: @"password" value: @"{{$randomPassword}}"];

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

CkoStringBuilder *sbRequestBody = [[CkoStringBuilder alloc] init];
[json EmitSb: sbRequestBody];

CkoHttpResponse *resp = [http PTextSb: @"PUT" url: @"https://<tenant-name>.forgeblocks.com/openidm/managed/alpha_user/:_id" textData: sbRequestBody charset: @"utf-8" contentType: @"application/json" md5: NO gzip: NO];
if (http.LastMethodSuccess == NO) {
    NSLog(@"%@",http.LastErrorText);
    return;
}

NSLog(@"%d",[resp.StatusCode intValue]);
NSLog(@"%@",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": ""
    }
  ]
}