Back to Collection Items
Use ChilkatAx-win32.pkg
Procedure Test
Handle hoHttp
Boolean iSuccess
Variant vJson
Handle hoJson
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.
// {}
Get Create (RefClass(cComChilkatJsonObject)) To hoJson
If (Not(IsComObjectCreated(hoJson))) Begin
Send CreateComObject of hoJson
End
Send ComSetRequestHeader To hoHttp "Content-Type" "application/json"
Send ComSetRequestHeader To hoHttp "Accept-API-Version" "resource=1.0"
Send ComSetRequestHeader To hoHttp "{{cookieName}}" "{{adminSSOToken}}"
Get pvComObject of hoJson to vJson
Get ComPostJson3 Of hoHttp "https://<tenant-name>.forgeblocks.com/am/json/realms/root/realms/alpha/users/:user/devices/2fa/push?_prettyPrint=true&_action=reset" "application/json" vJson 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 POST
-H "Accept-API-Version: resource=1.0"
-H "Content-Type: application/json"
-H "{{cookieName}}: {{adminSSOToken}}"
-d '"<object>"'
https://<tenant-name>.forgeblocks.com/am/json/realms/root/realms/alpha/users/:user/devices/2fa/push?_prettyPrint=true&_action=reset
Postman Collection Item JSON
{
"name": "Step 4: [Admin] Reset (Remove) Users' Push Device",
"request": {
"method": "POST",
"header": [
{
"description": "(Required) ",
"key": "Accept-API-Version",
"value": "resource=1.0"
},
{
"key": "Content-Type",
"value": "application/json"
},
{
"key": "{{cookieName}}",
"value": "{{adminSSOToken}}",
"type": "text"
}
],
"body": {
"mode": "raw",
"raw": "\"<object>\""
},
"url": {
"raw": "{{amUrl}}/json{{realm}}/users/:user/devices/2fa/push?_prettyPrint=true&_action=reset",
"host": [
"{{amUrl}}"
],
"path": [
"json{{realm}}",
"users",
":user",
"devices",
"2fa",
"push"
],
"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."
},
{
"key": "_action",
"value": "reset"
}
],
"variable": [
{
"key": "user",
"value": "{{demoUserId}}",
"description": "(Required) The identifier for the user for which the request is regarding."
}
]
},
"description": "Sets the user's 'skippable' selection of Authenticator Push module to default (NOT_SET) and deletes their profile's attribute"
},
"response": [
{
"name": "Unexpected server error happened during the process",
"originalRequest": {
"method": "POST",
"header": [
{
"description": "(Required) ",
"key": "Accept-API-Version",
"value": "resource=1.0"
}
],
"body": {
"mode": "raw",
"raw": "\"<object>\""
},
"url": {
"raw": "{{amUrl}}/json{{realm}}/users/:user/devices/2fa/push#1.0_action_reset?&_prettyPrint=true&_action=<string>",
"host": [
"{{amUrl}}"
],
"path": [
"json{{realm}}",
"users",
":user",
"devices",
"2fa",
"push"
],
"hash": "1.0_action_reset?&_prettyPrint=true&_action=<string>",
"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": "POST",
"header": [
{
"description": "(Required) ",
"key": "Accept-API-Version",
"value": "resource=1.0"
}
],
"body": {
"mode": "raw",
"raw": "\"<object>\""
},
"url": {
"raw": "{{amUrl}}/json{{realm}}/users/:user/devices/2fa/push#1.0_action_reset?&_prettyPrint=true&_action=<string>",
"host": [
"{{amUrl}}"
],
"path": [
"json{{realm}}",
"users",
":user",
"devices",
"2fa",
"push"
],
"hash": "1.0_action_reset?&_prettyPrint=true&_action=<string>",
"variable": [
{
"key": "user"
}
]
}
},
"status": "OK",
"code": 200,
"_postman_previewlanguage": "text",
"header": [
{
"key": "Content-Type",
"value": "*/*"
}
],
"cookie": [
],
"body": ""
}
]
}