Chilkat Online Tools

Swift / ForgeRock Identity Cloud Collection / Step 3: Delete assetlinks.json

Back to Collection Items

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

    let http = CkoHttp()
    var success: Bool

    // Adds the "Authorization: Bearer <access_token>" header.
    http.AuthToken = "<access_token>"

    var resp: CkoHttpResponse? = http.QuickRequest("DELETE", url: "https://id.mycompany.com/.well-known/assetlinks.json")
    if http.LastMethodSuccess == false {
        print("\(http.LastErrorText)")
        return
    }

    print("\(resp!.StatusCode.intValue)")
    print("\(resp!.BodyStr)")
    resp = nil

}

Curl Command

curl -X DELETE
	-H "Authorization: Bearer <access_token>"
https://id.mycompany.com/.well-known/assetlinks.json

Postman Collection Item JSON

{
  "name": "Step 3: Delete assetlinks.json",
  "request": {
    "method": "DELETE",
    "header": [
    ],
    "body": {
      "mode": "raw",
      "raw": "",
      "options": {
        "raw": {
          "language": "json"
        }
      }
    },
    "url": {
      "raw": "{{customDomainUrl}}/.well-known/assetlinks.json",
      "host": [
        "{{customDomainUrl}}"
      ],
      "path": [
        ".well-known",
        "assetlinks.json"
      ]
    }
  },
  "response": [
  ]
}