Chilkat Online Tools

PureBasic / ForgeRock Identity Cloud Collection / Step 3: Delete Users' Device Profile

Back to Collection Items

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

    CkHttp::ckSetRequestHeader(http,"If-Match","<string>")
    CkHttp::ckSetRequestHeader(http,"Accept-API-Version","resource=1.0")
    CkHttp::ckSetRequestHeader(http,"{{cookieName}}","{{demoSSOToken}}")

    resp.i = CkHttp::ckQuickRequest(http,"DELETE","https://<tenant-name>.forgeblocks.com/am/json/realms/root/realms/alpha/users/:user/devices/profile/:deviceProfileId?_prettyPrint=true#1.0_delete")
    If CkHttp::ckLastMethodSuccess(http) = 0
        Debug CkHttp::ckLastErrorText(http)
        CkHttp::ckDispose(http)
        ProcedureReturn
    EndIf

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



    CkHttp::ckDispose(http)


    ProcedureReturn
EndProcedure

Curl Command

curl -X DELETE
	-H "Accept-API-Version: resource=1.0"
	-H "If-Match: <string>"
	-H "{{cookieName}}: {{demoSSOToken}}"
https://<tenant-name>.forgeblocks.com/am/json/realms/root/realms/alpha/users/:user/devices/profile/:deviceProfileId?_prettyPrint=true#1.0_delete

Postman Collection Item JSON

{
  "name": "Step 3: Delete Users' Device Profile",
  "request": {
    "method": "DELETE",
    "header": [
      {
        "description": "(Required) ",
        "key": "Accept-API-Version",
        "value": "resource=1.0"
      },
      {
        "description": "(Required) ",
        "key": "If-Match",
        "value": "<string>"
      },
      {
        "key": "{{cookieName}}",
        "value": "{{demoSSOToken}}",
        "type": "text"
      }
    ],
    "url": {
      "raw": "{{amUrl}}/json{{realm}}/users/:user/devices/profile/:deviceProfileId?_prettyPrint=true#1.0_delete",
      "host": [
        "{{amUrl}}"
      ],
      "path": [
        "json{{realm}}",
        "users",
        ":user",
        "devices",
        "profile",
        ":deviceProfileId"
      ],
      "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."
        }
      ],
      "hash": "1.0_delete",
      "variable": [
        {
          "key": "user",
          "value": "{{demoUserId}}"
        },
        {
          "key": "deviceProfileId",
          "value": "{{deviceProfileId}}"
        }
      ]
    },
    "description": "Delete 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/profile/{{identifier}}#1.0_delete?&_prettyPrint=true",
          "host": [
            "{{amUrl}}"
          ],
          "path": [
            "json{{realm}}",
            "users",
            ":user",
            "devices",
            "profile",
            "{{identifier}}"
          ],
          "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/profile/{{identifier}}#1.0_delete?&_prettyPrint=true",
          "host": [
            "{{amUrl}}"
          ],
          "path": [
            "json{{realm}}",
            "users",
            ":user",
            "devices",
            "profile",
            "{{identifier}}"
          ],
          "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}"
    }
  ]
}