Chilkat Online Tools

PureBasic / ForgeRock Identity Cloud Collection / Step 3: [Admin] Amend Skip Option on Users' OATH Device

Back to Collection Items

IncludeFile "CkJsonObject.pb"
IncludeFile "CkHttp.pb"
IncludeFile "CkHttpResponse.pb"

Procedure ChilkatExample()

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

    http.i = CkHttp::ckCreate()
    If http.i = 0
        Debug "Failed to create object."
        ProcedureReturn
    EndIf

    success.i

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

    ; The following JSON is sent in the request body.

    ; {
    ;   "value": true
    ; }

    json.i = CkJsonObject::ckCreate()
    If json.i = 0
        Debug "Failed to create object."
        ProcedureReturn
    EndIf

    CkJsonObject::ckUpdateBool(json,"value",1)

    CkHttp::ckSetRequestHeader(http,"Content-Type","application/json")
    CkHttp::ckSetRequestHeader(http,"Accept-API-Version","resource=1.0")
    CkHttp::ckSetRequestHeader(http,"{{cookieName}}","{{adminSSOToken}}")

    resp.i = CkHttp::ckPostJson3(http,"https://<tenant-name>.forgeblocks.com/am/json/realms/root/realms/alpha/users/:user/devices/2fa/oath?_prettyPrint=true&_action=skip","application/json",json)
    If CkHttp::ckLastMethodSuccess(http) = 0
        Debug CkHttp::ckLastErrorText(http)
        CkHttp::ckDispose(http)
        CkJsonObject::ckDispose(json)
        ProcedureReturn
    EndIf

    Debug Str(CkHttpResponse::ckStatusCode(resp))
    Debug CkHttpResponse::ckBodyStr(resp)
    CkHttpResponse::ckDispose(resp)



    CkHttp::ckDispose(http)
    CkJsonObject::ckDispose(json)


    ProcedureReturn
EndProcedure

Curl Command

curl -X POST
	-H "Accept-API-Version: resource=1.0"
	-H "Content-Type: application/json"
	-H "{{cookieName}}: {{adminSSOToken}}"
	-d '{
    "value": true
}'
https://<tenant-name>.forgeblocks.com/am/json/realms/root/realms/alpha/users/:user/devices/2fa/oath?_prettyPrint=true&_action=skip

Postman Collection Item JSON

{
  "name": "Step 3: [Admin] Amend Skip Option on Users' OATH 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": "{\n    \"value\": true\n}"
    },
    "url": {
      "raw": "{{amUrl}}/json{{realm}}/users/:user/devices/2fa/oath?_prettyPrint=true&_action=skip",
      "host": [
        "{{amUrl}}"
      ],
      "path": [
        "json{{realm}}",
        "users",
        ":user",
        "devices",
        "2fa",
        "oath"
      ],
      "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": "skip",
          "description": "(Required) "
        }
      ],
      "variable": [
        {
          "key": "user",
          "value": "{{demoUserId}}",
          "description": "(Required) The identifier for the user for which the request is regarding."
        }
      ]
    },
    "description": "Sets the user's ability to skip an Authenticator OATH module"
  },
  "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": "{\n    \"value\": \"<boolean>\"\n}"
        },
        "url": {
          "raw": "{{amUrl}}/json{{realm}}/users/:user/devices/2fa/oath#1.0_action_skip?&_prettyPrint=true&_action=<string>",
          "host": [
            "{{amUrl}}"
          ],
          "path": [
            "json{{realm}}",
            "users",
            ":user",
            "devices",
            "2fa",
            "oath"
          ],
          "hash": "1.0_action_skip?&_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": "{\n    \"value\": \"<boolean>\"\n}"
        },
        "url": {
          "raw": "{{amUrl}}/json{{realm}}/users/:user/devices/2fa/oath#1.0_action_skip?&_prettyPrint=true&_action=<string>",
          "host": [
            "{{amUrl}}"
          ],
          "path": [
            "json{{realm}}",
            "users",
            ":user",
            "devices",
            "2fa",
            "oath"
          ],
          "hash": "1.0_action_skip?&_prettyPrint=true&_action=<string>",
          "variable": [
            {
              "key": "user"
            }
          ]
        }
      },
      "status": "OK",
      "code": 200,
      "_postman_previewlanguage": "text",
      "header": [
        {
          "key": "Content-Type",
          "value": "*/*"
        }
      ],
      "cookie": [
      ],
      "body": "minim ullamco dolore"
    }
  ]
}