Chilkat Online Tools

TCL / ForgeRock Identity Cloud Collection / Step 2: Update Users' WebAuthn Device

Back to Collection Items

load ./chilkat.dll

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

set http [new_CkHttp]

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

# The following JSON is sent in the request body.

# {
#   "deviceName": "{{$randomUserName}}'s WebAuthn Device"
# }

set json [new_CkJsonObject]

CkJsonObject_UpdateString $json "deviceName" "{{$randomUserName}}'s WebAuthn Device"

CkHttp_SetRequestHeader $http "Content-Type" "application/json"
CkHttp_SetRequestHeader $http "Accept-API-Version" "resource=1.0"
CkHttp_SetRequestHeader $http "{{cookieName}}" "{{demoSSOToken}}"

set sbRequestBody [new_CkStringBuilder]

CkJsonObject_EmitSb $json $sbRequestBody

# resp is a CkHttpResponse
set resp [CkHttp_PTextSb $http "PUT" "https://<tenant-name>.forgeblocks.com/am/json/realms/root/realms/alpha/users/:user/devices/2fa/webauthn/:webAuthnDeviceId?_prettyPrint=true" $sbRequestBody "utf-8" "application/json" 0 0]
if {[CkHttp_get_LastMethodSuccess $http] == 0} then {
    puts [CkHttp_lastErrorText $http]
    delete_CkHttp $http
    delete_CkJsonObject $json
    delete_CkStringBuilder $sbRequestBody
    exit
}

puts [CkHttpResponse_get_StatusCode $resp]
puts [CkHttpResponse_bodyStr $resp]
delete_CkHttpResponse $resp


delete_CkHttp $http
delete_CkJsonObject $json
delete_CkStringBuilder $sbRequestBody

Curl Command

curl -X PUT
	-H "Accept-API-Version: resource=1.0"
	-H "Content-Type: application/json"
	-H "{{cookieName}}: {{demoSSOToken}}"
	-d '{
    "deviceName": "{{$randomUserName}}\'s WebAuthn Device"
}'
https://<tenant-name>.forgeblocks.com/am/json/realms/root/realms/alpha/users/:user/devices/2fa/webauthn/:webAuthnDeviceId?_prettyPrint=true

Postman Collection Item JSON

{
  "name": "Step 2: Update Users' WebAuthn Device",
  "request": {
    "method": "PUT",
    "header": [
      {
        "description": "(Required) ",
        "key": "Accept-API-Version",
        "value": "resource=1.0"
      },
      {
        "key": "Content-Type",
        "value": "application/json"
      },
      {
        "key": "{{cookieName}}",
        "value": "{{demoSSOToken}}",
        "type": "text"
      }
    ],
    "body": {
      "mode": "raw",
      "raw": "{\n    \"deviceName\": \"{{$randomUserName}}'s WebAuthn Device\"\n}"
    },
    "url": {
      "raw": "{{amUrl}}/json{{realm}}/users/:user/devices/2fa/webauthn/:webAuthnDeviceId?_prettyPrint=true",
      "host": [
        "{{amUrl}}"
      ],
      "path": [
        "json{{realm}}",
        "users",
        ":user",
        "devices",
        "2fa",
        "webauthn",
        ":webAuthnDeviceId"
      ],
      "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."
        }
      ],
      "variable": [
        {
          "key": "user",
          "value": "{{demoUserId}}",
          "description": "(Required) The identifier for the user for which the request is regarding."
        },
        {
          "key": "webAuthnDeviceId",
          "value": "{{webAuthnDeviceId}}"
        }
      ]
    },
    "description": "Update an existing WebAuthn user device"
  },
  "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    \"deviceName\": \"<string>\",\n    \"uuid\": \"<string>\"\n}"
        },
        "url": {
          "raw": "{{amUrl}}/json{{realm}}/users/:user/devices/2fa/webauthn/{{uuid}}#1.0_update?&_prettyPrint=true",
          "host": [
            "{{amUrl}}"
          ],
          "path": [
            "json{{realm}}",
            "users",
            ":user",
            "devices",
            "2fa",
            "webauthn",
            "{{uuid}}"
          ],
          "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    \"deviceName\": \"<string>\",\n    \"uuid\": \"<string>\"\n}"
        },
        "url": {
          "raw": "{{amUrl}}/json{{realm}}/users/:user/devices/2fa/webauthn/{{uuid}}#1.0_update?&_prettyPrint=true",
          "host": [
            "{{amUrl}}"
          ],
          "path": [
            "json{{realm}}",
            "users",
            ":user",
            "devices",
            "2fa",
            "webauthn",
            "{{uuid}}"
          ],
          "hash": "1.0_update?&_prettyPrint=true",
          "variable": [
            {
              "key": "user"
            }
          ]
        }
      },
      "status": "OK",
      "code": 200,
      "_postman_previewlanguage": "text",
      "header": [
        {
          "key": "Content-Type",
          "value": "*/*"
        }
      ],
      "cookie": [
      ],
      "body": ""
    }
  ]
}