Back to Collection Items
<?php
// This example assumes the Chilkat API to have been previously unlocked.
// See Global Unlock Sample for sample code.
// For versions of Chilkat < 10.0.0, use new COM('Chilkat_9_5_0.Chilkat.Http')
$http = new COM("Chilkat.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}}"
// }
// For versions of Chilkat < 10.0.0, use new COM('Chilkat_9_5_0.Chilkat.JsonObject')
$json = new COM("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>';
// For versions of Chilkat < 10.0.0, use new COM('Chilkat_9_5_0.Chilkat.StringBuilder')
$sbRequestBody = new COM("Chilkat.StringBuilder");
$json->EmitSb($sbRequestBody);
// resp is a Chilkat.HttpResponse
$resp = $http->PTextSb('PUT','https://<tenant-name>.forgeblocks.com/openidm/managed/alpha_user/:_id',$sbRequestBody,'utf-8','application/json',0,0);
if ($http->LastMethodSuccess == 0) {
print $http->LastErrorText . "\n";
exit;
}
print $resp->StatusCode . "\n";
print $resp->BodyStr . "\n";
?>
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": ""
}
]
}