Back to Collection Items
-- Important: See this note about string length limitations for strings returned by sp_OAMethod calls.
--
CREATE PROCEDURE ChilkatSample
AS
BEGIN
DECLARE @hr int
DECLARE @iTmp0 int
-- Important: Do not use nvarchar(max). See the warning about using nvarchar(max).
DECLARE @sTmp0 nvarchar(4000)
-- This example assumes the Chilkat API to have been previously unlocked.
-- See Global Unlock Sample for sample code.
DECLARE @http int
-- Use "Chilkat_9_5_0.Http" for versions of Chilkat < 10.0.0
EXEC @hr = sp_OACreate 'Chilkat.Http', @http OUT
IF @hr <> 0
BEGIN
PRINT 'Failed to create ActiveX component'
RETURN
END
DECLARE @success int
-- 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": "{{postmanDemoUsername}}",
-- "sn": "Demo-User",
-- "givenName": "Postman",
-- "mail": "{{postmanDemoEmail}}",
-- "telephoneNumber": "{{$randomPhoneNumber}}",
-- "password": "{{postmanDemoPassword}}"
-- }
DECLARE @json int
-- Use "Chilkat_9_5_0.JsonObject" for versions of Chilkat < 10.0.0
EXEC @hr = sp_OACreate 'Chilkat.JsonObject', @json OUT
EXEC sp_OAMethod @json, 'UpdateString', @success OUT, 'userName', '{{postmanDemoUsername}}'
EXEC sp_OAMethod @json, 'UpdateString', @success OUT, 'sn', 'Demo-User'
EXEC sp_OAMethod @json, 'UpdateString', @success OUT, 'givenName', 'Postman'
EXEC sp_OAMethod @json, 'UpdateString', @success OUT, 'mail', '{{postmanDemoEmail}}'
EXEC sp_OAMethod @json, 'UpdateString', @success OUT, 'telephoneNumber', '{{$randomPhoneNumber}}'
EXEC sp_OAMethod @json, 'UpdateString', @success OUT, 'password', '{{postmanDemoPassword}}'
-- Adds the "Authorization: Bearer <access_token>" header.
EXEC sp_OASetProperty @http, 'AuthToken', '<access_token>'
DECLARE @resp int
EXEC sp_OAMethod @http, 'PostJson3', @resp OUT, 'https://<tenant-name>.forgeblocks.com/openidm/managed/alpha_user?_action=create', 'application/json', @json
EXEC sp_OAGetProperty @http, 'LastMethodSuccess', @iTmp0 OUT
IF @iTmp0 = 0
BEGIN
EXEC sp_OAGetProperty @http, 'LastErrorText', @sTmp0 OUT
PRINT @sTmp0
EXEC @hr = sp_OADestroy @http
EXEC @hr = sp_OADestroy @json
RETURN
END
EXEC sp_OAGetProperty @resp, 'StatusCode', @iTmp0 OUT
PRINT @iTmp0
EXEC sp_OAGetProperty @resp, 'BodyStr', @sTmp0 OUT
PRINT @sTmp0
EXEC @hr = sp_OADestroy @resp
EXEC @hr = sp_OADestroy @http
EXEC @hr = sp_OADestroy @json
END
GO
Curl Command
curl -X POST
-H "Authorization: Bearer <access_token>"
-d '{
"userName": "{{postmanDemoUsername}}",
"sn": "Demo-User",
"givenName": "Postman",
"mail": "{{postmanDemoEmail}}",
"telephoneNumber": "{{$randomPhoneNumber}}",
"password": "{{postmanDemoPassword}}"
}'
https://<tenant-name>.forgeblocks.com/openidm/managed/alpha_user?_action=create
Postman Collection Item JSON
{
"name": "Step 7: Create a Demo \"Alpha User\" Managed Identity",
"event": [
{
"listen": "prerequest",
"script": {
"exec": [
""
],
"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": {
"auth": {
"type": "bearer",
"bearer": [
{
"key": "token",
"value": "{{adminAccessToken}}",
"type": "string"
}
]
},
"method": "POST",
"header": [
],
"body": {
"mode": "raw",
"raw": "{\n \"userName\": \"{{postmanDemoUsername}}\",\n \"sn\": \"Demo-User\",\n \"givenName\": \"Postman\",\n \"mail\": \"{{postmanDemoEmail}}\",\n \"telephoneNumber\": \"{{$randomPhoneNumber}}\",\n \"password\": \"{{postmanDemoPassword}}\"\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 demonstration `alpha_user` in the Alpha realm. A number of requests in the Postman Collection require this user to be present, for example the *Intelligent Access* section."
},
"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": ""
}
]
}