Back to Collection Items
// Important: Don't forget to include the call to System.loadLibrary
// as shown at the bottom of this code sample.
package com.test;
import android.app.Activity;
import com.chilkatsoft.*;
import android.widget.TextView;
import android.os.Bundle;
public class SimpleActivity extends Activity {
private static final String TAG = "Chilkat";
// Called when the activity is first created.
@Override
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
// This example assumes the Chilkat API to have been previously unlocked.
// See Global Unlock Sample for sample code.
CkHttp http = new CkHttp();
boolean 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}}"
// }
CkJsonObject json = new CkJsonObject();
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.put_AuthToken("<access_token>");
CkStringBuilder sbRequestBody = new CkStringBuilder();
json.EmitSb(sbRequestBody);
CkHttpResponse resp = http.PTextSb("PUT","https://<tenant-name>.forgeblocks.com/openidm/managed/alpha_user/:_id",sbRequestBody,"utf-8","application/json",false,false);
if (http.get_LastMethodSuccess() == false) {
Log.i(TAG, http.lastErrorText());
return;
}
Log.i(TAG, String.valueOf(resp.get_StatusCode()));
Log.i(TAG, resp.bodyStr());
}
static {
System.loadLibrary("chilkat");
// Note: If the incorrect library name is passed to System.loadLibrary,
// then you will see the following error message at application startup:
//"The application <your-application-name> has stopped unexpectedly. Please try again."
}
}
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": ""
}
]
}