Chilkat Online Tools

phpAx / ForgeRock Identity Cloud Collection / Step 1: Query Users' Trusted Devices

Back to Collection Items

<?php

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

$http = new COM("Chilkat_9_5_0.Http");

$queryParams = new COM("Chilkat_9_5_0.JsonObject");
$queryParams->UpdateString('_prettyPrint','true');
$queryParams->UpdateString('_queryFilter','true');

$http->SetRequestHeader('{{cookieName}}','{{demoSSOToken}}');
$http->SetRequestHeader('Accept-API-Version','resource=1.0');

// resp is a Chilkat_9_5_0.HttpResponse
$resp = $http->QuickRequestParams('GET','https://<tenant-name>.forgeblocks.com/am/json/realms/root/realms/alpha/users/:user/devices/trusted',$queryParams);
if ($http->LastMethodSuccess == 0) {
    print $http->LastErrorText . "\n";
    exit;
}

print $resp->StatusCode . "\n";
print $resp->BodyStr . "\n";


?>

Curl Command

curl -G -d "_prettyPrint=true"
	-d "_queryFilter=true"
	-H "Accept-API-Version: resource=1.0"
	-H "{{cookieName}}: {{demoSSOToken}}"
https://<tenant-name>.forgeblocks.com/am/json/realms/root/realms/alpha/users/:user/devices/trusted

Postman Collection Item JSON

{
  "name": "Step 1: Query Users' Trusted Devices",
  "event": [
    {
      "listen": "test",
      "script": {
        "exec": [
          "const JSONResponse = JSON.parse(responseBody);",
          "",
          "// Did request contain results?",
          "if(JSONResponse.resultCount && JSONResponse.resultCount > 0)",
          "{",
          "  // Set `trustedDeviceId` variable",
          "  pm.globals.set(\"trustedDeviceId\", JSONResponse.result[0]._id);",
          "}",
          "else",
          "{",
          "  pm.globals.set(\"trustedDeviceId\", \"none_found\");  ",
          "}",
          "",
          "// Tests",
          "",
          "pm.test(\"Status code is 200.\", () => {",
          "  pm.expect(pm.response.code).to.eql(200);",
          "});",
          "",
          "pm.test(\"Response contains resultCount\", function () {",
          "    pm.expect(JSONResponse.resultCount).to.be.a(\"number\");",
          "});",
          "",
          "pm.test(\"Response contains at least one result\", function () {",
          "    pm.expect(JSONResponse.resultCount).to.be.above(0);",
          "});",
          "",
          ""
        ],
        "type": "text/javascript"
      }
    }
  ],
  "request": {
    "method": "GET",
    "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/trusted?_prettyPrint=true&_queryFilter=true",
      "host": [
        "{{amUrl}}"
      ],
      "path": [
        "json{{realm}}",
        "users",
        ":user",
        "devices",
        "trusted"
      ],
      "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": "_queryFilter",
          "value": "true",
          "description": "(Required) "
        }
      ],
      "variable": [
        {
          "key": "user",
          "value": "{{demoUserId}}"
        }
      ]
    },
    "description": "Query trusted user devices"
  },
  "response": [
    {
      "name": "Success",
      "originalRequest": {
        "method": "GET",
        "header": [
          {
            "description": "(Required) ",
            "key": "Accept-API-Version",
            "value": "resource=1.0"
          }
        ],
        "url": {
          "raw": "{{amUrl}}/json{{realm}}/users/:user/devices/trusted#1.0_query_filter?&_prettyPrint=true&_queryFilter=true",
          "host": [
            "{{amUrl}}"
          ],
          "path": [
            "json{{realm}}",
            "users",
            ":user",
            "devices",
            "trusted"
          ],
          "hash": "1.0_query_filter?&_prettyPrint=true&_queryFilter=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": "GET",
        "header": [
          {
            "description": "(Required) ",
            "key": "Accept-API-Version",
            "value": "resource=1.0"
          }
        ],
        "url": {
          "raw": "{{amUrl}}/json{{realm}}/users/:user/devices/trusted#1.0_query_filter?&_prettyPrint=true&_queryFilter=true",
          "host": [
            "{{amUrl}}"
          ],
          "path": [
            "json{{realm}}",
            "users",
            ":user",
            "devices",
            "trusted"
          ],
          "hash": "1.0_query_filter?&_prettyPrint=true&_queryFilter=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}"
    }
  ]
}