Back to Collection Items
' This example assumes the Chilkat API to have been previously unlocked.
' See Global Unlock Sample for sample code.
Dim http As New ChilkatHttp
Dim success As Long
http.SetRequestHeader "{{cookieName}}","{{demoSSOToken}}"
http.SetRequestHeader "Accept-API-Version","resource=1.0"
Dim resp As ChilkatHttpResponse
Set resp = http.QuickRequest("DELETE","https://<tenant-name>.forgeblocks.com/am/json/realms/root/realms/alpha/users/:user/devices/2fa/webauthn/:webAuthnDeviceId?_prettyPrint=true")
If (http.LastMethodSuccess = 0) Then
Debug.Print http.LastErrorText
Exit Sub
End If
Debug.Print resp.StatusCode
Debug.Print resp.BodyStr
Curl Command
curl -X DELETE
-H "Accept-API-Version: resource=1.0"
-H "{{cookieName}}: {{demoSSOToken}}"
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 3: Delete Users' WebAuthn Device",
"request": {
"method": "DELETE",
"header": [
{
"description": "(Required) ",
"key": "Accept-API-Version",
"value": "resource=1.0"
},
{
"key": "{{cookieName}}",
"value": "{{demoSSOToken}}",
"type": "text"
}
],
"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": "Delete WebAuthn user device"
},
"response": [
{
"name": "Success",
"originalRequest": {
"method": "DELETE",
"header": [
{
"description": "(Required) ",
"key": "Accept-API-Version",
"value": "resource=1.0"
},
{
"description": "(Required) ",
"key": "If-Match",
"value": "*"
}
],
"url": {
"raw": "{{amUrl}}/json{{realm}}/users/:user/devices/2fa/webauthn/{{uuid}}#1.0_delete?&_prettyPrint=true",
"host": [
"{{amUrl}}"
],
"path": [
"json{{realm}}",
"users",
":user",
"devices",
"2fa",
"webauthn",
"{{uuid}}"
],
"hash": "1.0_delete?&_prettyPrint=true",
"variable": [
{
"key": "user"
}
]
}
},
"status": "OK",
"code": 200,
"_postman_previewlanguage": "text",
"header": [
{
"key": "Content-Type",
"value": "*/*"
}
],
"cookie": [
],
"body": ""
},
{
"name": "Unexpected server error happened during the process",
"originalRequest": {
"method": "DELETE",
"header": [
{
"description": "(Required) ",
"key": "Accept-API-Version",
"value": "resource=1.0"
},
{
"description": "(Required) ",
"key": "If-Match",
"value": "*"
}
],
"url": {
"raw": "{{amUrl}}/json{{realm}}/users/:user/devices/2fa/webauthn/{{uuid}}#1.0_delete?&_prettyPrint=true",
"host": [
"{{amUrl}}"
],
"path": [
"json{{realm}}",
"users",
":user",
"devices",
"2fa",
"webauthn",
"{{uuid}}"
],
"hash": "1.0_delete?&_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}"
}
]
}