Chilkat Online Tools

DataFlex / ForgeRock Identity Cloud Collection / Step 2: Update Users' Device Profile

Back to Collection Items

Use ChilkatAx-9.5.0-win32.pkg

Procedure Test
    Handle hoHttp
    Boolean iSuccess
    Handle hoJson
    Variant vSbRequestBody
    Handle hoSbRequestBody
    Variant vResp
    Handle hoResp
    String sTemp1
    Integer iTemp1
    Boolean bTemp1

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

    Get Create (RefClass(cComChilkatHttp)) To hoHttp
    If (Not(IsComObjectCreated(hoHttp))) Begin
        Send CreateComObject of hoHttp
    End

    // Use this online tool to generate code from sample JSON: Generate Code to Create JSON

    // The following JSON is sent in the request body.

    // {
    //   "alias": "{{$randomUserName}}'s Device",
    //   "location": {
    //     "longitude": "{{longitude}}",
    //     "latitude": "{{latitude}}"
    //   }
    // }

    Get Create (RefClass(cComChilkatJsonObject)) To hoJson
    If (Not(IsComObjectCreated(hoJson))) Begin
        Send CreateComObject of hoJson
    End
    Get ComUpdateString Of hoJson "alias" "{{$randomUserName}}'s Device" To iSuccess
    Get ComUpdateString Of hoJson "location.longitude" "{{longitude}}" To iSuccess
    Get ComUpdateString Of hoJson "location.latitude" "{{latitude}}" To iSuccess

    Send ComSetRequestHeader To hoHttp "If-Match" "*"
    Send ComSetRequestHeader To hoHttp "Content-Type" "application/json"
    Send ComSetRequestHeader To hoHttp "Accept-API-Version" "resource=1.0"
    Send ComSetRequestHeader To hoHttp "{{cookieName}}" "{{demoSSOToken}}"

    Get Create (RefClass(cComChilkatStringBuilder)) To hoSbRequestBody
    If (Not(IsComObjectCreated(hoSbRequestBody))) Begin
        Send CreateComObject of hoSbRequestBody
    End
    Get pvComObject of hoSbRequestBody to vSbRequestBody
    Get ComEmitSb Of hoJson vSbRequestBody To iSuccess

    Get pvComObject of hoSbRequestBody to vSbRequestBody
    Get ComPTextSb Of hoHttp "PUT" "https://<tenant-name>.forgeblocks.com/am/json/realms/root/realms/alpha/users/:user/devices/profile/:deviceProfileId?_prettyPrint=true#1.0_update" vSbRequestBody "utf-8" "application/json" False False To vResp
    If (IsComObject(vResp)) Begin
        Get Create (RefClass(cComChilkatHttpResponse)) To hoResp
        Set pvComObject Of hoResp To vResp
    End
    Get ComLastMethodSuccess Of hoHttp To bTemp1
    If (bTemp1 = False) Begin
        Get ComLastErrorText Of hoHttp To sTemp1
        Showln sTemp1
        Procedure_Return
    End

    Get ComStatusCode Of hoResp To iTemp1
    Showln iTemp1
    Get ComBodyStr Of hoResp To sTemp1
    Showln sTemp1
    Send Destroy of hoResp


End_Procedure

Curl Command

curl -X PUT
	-H "Accept-API-Version: resource=1.0"
	-H "If-Match: *"
	-H "Content-Type: application/json"
	-H "{{cookieName}}: {{demoSSOToken}}"
	-d '{
    "alias": "{{$randomUserName}}\'s Device",
    "location": {
        "longitude": {{$randomLongitude}},
        "latitude": {{$randomLatitude}}
    }
}'
https://<tenant-name>.forgeblocks.com/am/json/realms/root/realms/alpha/users/:user/devices/profile/:deviceProfileId?_prettyPrint=true#1.0_update

Postman Collection Item JSON

{
  "name": "Step 2: Update Users' Device Profile",
  "request": {
    "method": "PUT",
    "header": [
      {
        "description": "(Required) ",
        "key": "Accept-API-Version",
        "value": "resource=1.0"
      },
      {
        "description": "(Required) ",
        "key": "If-Match",
        "value": "*"
      },
      {
        "key": "Content-Type",
        "value": "application/json"
      },
      {
        "key": "{{cookieName}}",
        "type": "text",
        "value": "{{demoSSOToken}}"
      }
    ],
    "body": {
      "mode": "raw",
      "raw": "{\n    \"alias\": \"{{$randomUserName}}'s Device\",\n    \"location\": {\n        \"longitude\": {{$randomLongitude}},\n        \"latitude\": {{$randomLatitude}}\n    }\n}"
    },
    "url": {
      "raw": "{{amUrl}}/json{{realm}}/users/:user/devices/profile/:deviceProfileId?_prettyPrint=true#1.0_update",
      "host": [
        "{{amUrl}}"
      ],
      "path": [
        "json{{realm}}",
        "users",
        ":user",
        "devices",
        "profile",
        ":deviceProfileId"
      ],
      "query": [
        {
          "key": "_fields",
          "value": "",
          "description": "Optional parameter containing a comma separated list of field references specifying which fields of the targeted JSON resource should be returned.",
          "disabled": true
        },
        {
          "key": "_prettyPrint",
          "value": "true",
          "description": "Optional parameter requesting that the returned JSON resource content should be formatted to be more human readable."
        }
      ],
      "hash": "1.0_update",
      "variable": [
        {
          "key": "user",
          "value": "{{demoUserId}}"
        },
        {
          "key": "deviceProfileId",
          "value": "{{deviceProfileId}}"
        }
      ]
    },
    "description": "Update an existing user device alias"
  },
  "response": [
    {
      "name": "Unexpected server error happened during the process",
      "originalRequest": {
        "method": "PUT",
        "header": [
          {
            "description": "(Required) ",
            "key": "Accept-API-Version",
            "value": "resource=1.0"
          },
          {
            "description": "(Required) ",
            "key": "If-Match",
            "value": "*"
          }
        ],
        "body": {
          "mode": "raw",
          "raw": "{\n    \"identifier\": \"<string>\",\n    \"alias\": \"<string>\",\n    \"lastSelectedDate\": \"<string>\",\n    \"metadata\": \"<string>\",\n    \"location\": {\n        \"longitude\": 5910496.137554675,\n        \"latitude\": -41063633.84429224\n    }\n}"
        },
        "url": {
          "raw": "{{amUrl}}/json{{realm}}/users/:user/devices/profile/{{identifier}}#1.0_update?&_prettyPrint=true",
          "host": [
            "{{amUrl}}"
          ],
          "path": [
            "json{{realm}}",
            "users",
            ":user",
            "devices",
            "profile",
            "{{identifier}}"
          ],
          "hash": "1.0_update?&_prettyPrint=true",
          "variable": [
            {
              "key": "user"
            }
          ]
        }
      },
      "status": "Internal Server Error",
      "code": 500,
      "_postman_previewlanguage": "json",
      "header": [
        {
          "key": "Content-Type",
          "value": "application/json"
        }
      ],
      "cookie": [
      ],
      "body": "{\n \"code\": 93541721,\n \"message\": \"minim\",\n \"reason\": \"sint Excepteur\",\n \"detail\": \"veniam id qui\"\n}"
    },
    {
      "name": "Success",
      "originalRequest": {
        "method": "PUT",
        "header": [
          {
            "description": "(Required) ",
            "key": "Accept-API-Version",
            "value": "resource=1.0"
          },
          {
            "description": "(Required) ",
            "key": "If-Match",
            "value": "*"
          }
        ],
        "body": {
          "mode": "raw",
          "raw": "{\n    \"identifier\": \"<string>\",\n    \"alias\": \"<string>\",\n    \"lastSelectedDate\": \"<string>\",\n    \"metadata\": \"<string>\",\n    \"location\": {\n        \"longitude\": 5910496.137554675,\n        \"latitude\": -41063633.84429224\n    }\n}"
        },
        "url": {
          "raw": "{{amUrl}}/json{{realm}}/users/:user/devices/profile/{{identifier}}#1.0_update?&_prettyPrint=true",
          "host": [
            "{{amUrl}}"
          ],
          "path": [
            "json{{realm}}",
            "users",
            ":user",
            "devices",
            "profile",
            "{{identifier}}"
          ],
          "hash": "1.0_update?&_prettyPrint=true",
          "variable": [
            {
              "key": "user"
            }
          ]
        }
      },
      "status": "OK",
      "code": 200,
      "_postman_previewlanguage": "text",
      "header": [
        {
          "key": "Content-Type",
          "value": "*/*"
        }
      ],
      "cookie": [
      ],
      "body": ""
    }
  ]
}