Chilkat Online Tools

Classic ASP / Auth0 Management API / Update a client

Back to Collection Items

<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
</head>
<body>
<%
' This example assumes the Chilkat API to have been previously unlocked.
' See Global Unlock Sample for sample code.

set http = Server.CreateObject("Chilkat_9_5_0.Http")

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

' The following JSON is sent in the request body.

' {
'   "name": "",
'   "client_secret": "",
'   "logo_uri": "",
'   "callbacks": [
'     ""
'   ],
'   "allowed_origins": [
'     ""
'   ],
'   "client_aliases": [
'     ""
'   ],
'   "allowed_clients": [
'     ""
'   ],
'   "allowed_logout_urls": [
'     ""
'   ],
'   "jwt_configuration": {
'     "lifetime_in_seconds": 0,
'     "secret_encoded": true,
'     "scopes": {},
'     "alg": ""
'   },
'   "encryption_key": {
'     "pub": "",
'     "cert": "",
'     "subject": ""
'   },
'   "sso": true,
'   "custom_login_page_on": true,
'   "token_endpoint_auth_method": "",
'   "app_type": "",
'   "is_first_party": true,
'   "custom_login_page": "",
'   "custom_login_page_preview": "",
'   "form_template": "",
'   "addons": {
'     "aws": {},
'     "azure_blob": {},
'     "azure_sb": {},
'     "rms": {},
'     "mscrm": {},
'     "slack": {},
'     "box": {},
'     "cloudbees": {},
'     "concur": {},
'     "dropbox": {},
'     "echosign": {},
'     "egnyte": {},
'     "firebase": {},
'     "newrelic": {},
'     "office365": {},
'     "salesforce": {},
'     "salesforce_api": {},
'     "salesforce_sandbox_api": {},
'     "samlp": {},
'     "layer": {},
'     "sap_api": {},
'     "sharepoint": {},
'     "springcm": {},
'     "wams": {},
'     "wsfed": {},
'     "zendesk": {},
'     "zoom": {}
'   },
'   "resource_servers": [
'     {
'       "identifier": "",
'       "scopes": [
'         ""
'       ]
'     }
'   ],
'   "client_metadata": {},
'   "mobile": {
'     "android": {},
'     "ios": {}
'   }
' }

set json = Server.CreateObject("Chilkat_9_5_0.JsonObject")
success = json.UpdateString("name","")
success = json.UpdateString("client_secret","")
success = json.UpdateString("logo_uri","")
success = json.UpdateString("callbacks[0]","")
success = json.UpdateString("allowed_origins[0]","")
success = json.UpdateString("client_aliases[0]","")
success = json.UpdateString("allowed_clients[0]","")
success = json.UpdateString("allowed_logout_urls[0]","")
success = json.UpdateInt("jwt_configuration.lifetime_in_seconds",0)
success = json.UpdateBool("jwt_configuration.secret_encoded",1)
success = json.UpdateNewObject("jwt_configuration.scopes")
success = json.UpdateString("jwt_configuration.alg","")
success = json.UpdateString("encryption_key.pub","")
success = json.UpdateString("encryption_key.cert","")
success = json.UpdateString("encryption_key.subject","")
success = json.UpdateBool("sso",1)
success = json.UpdateBool("custom_login_page_on",1)
success = json.UpdateString("token_endpoint_auth_method","")
success = json.UpdateString("app_type","")
success = json.UpdateBool("is_first_party",1)
success = json.UpdateString("custom_login_page","")
success = json.UpdateString("custom_login_page_preview","")
success = json.UpdateString("form_template","")
success = json.UpdateNewObject("addons.aws")
success = json.UpdateNewObject("addons.azure_blob")
success = json.UpdateNewObject("addons.azure_sb")
success = json.UpdateNewObject("addons.rms")
success = json.UpdateNewObject("addons.mscrm")
success = json.UpdateNewObject("addons.slack")
success = json.UpdateNewObject("addons.box")
success = json.UpdateNewObject("addons.cloudbees")
success = json.UpdateNewObject("addons.concur")
success = json.UpdateNewObject("addons.dropbox")
success = json.UpdateNewObject("addons.echosign")
success = json.UpdateNewObject("addons.egnyte")
success = json.UpdateNewObject("addons.firebase")
success = json.UpdateNewObject("addons.newrelic")
success = json.UpdateNewObject("addons.office365")
success = json.UpdateNewObject("addons.salesforce")
success = json.UpdateNewObject("addons.salesforce_api")
success = json.UpdateNewObject("addons.salesforce_sandbox_api")
success = json.UpdateNewObject("addons.samlp")
success = json.UpdateNewObject("addons.layer")
success = json.UpdateNewObject("addons.sap_api")
success = json.UpdateNewObject("addons.sharepoint")
success = json.UpdateNewObject("addons.springcm")
success = json.UpdateNewObject("addons.wams")
success = json.UpdateNewObject("addons.wsfed")
success = json.UpdateNewObject("addons.zendesk")
success = json.UpdateNewObject("addons.zoom")
success = json.UpdateString("resource_servers[0].identifier","")
success = json.UpdateString("resource_servers[0].scopes[0]","")
success = json.UpdateNewObject("client_metadata")
success = json.UpdateNewObject("mobile.android")
success = json.UpdateNewObject("mobile.ios")

' Adds the "Authorization: Bearer {{auth0_token}}" header.
http.AuthToken = "{{auth0_token}}"
http.SetRequestHeader "Content-Type","application/json"

set sbRequestBody = Server.CreateObject("Chilkat_9_5_0.StringBuilder")
success = json.EmitSb(sbRequestBody)

' resp is a Chilkat_9_5_0.HttpResponse
Set resp = http.PTextSb("PATCH","https://{{auth0_domain}}/api/v2/clients/:id",sbRequestBody,"utf-8","application/json",0,0)
If (http.LastMethodSuccess = 0) Then
    Response.Write "<pre>" & Server.HTMLEncode( http.LastErrorText) & "</pre>"
    Response.End
End If

Response.Write "<pre>" & Server.HTMLEncode( resp.StatusCode) & "</pre>"
Response.Write "<pre>" & Server.HTMLEncode( resp.BodyStr) & "</pre>"


%>
</body>
</html>

Curl Command

curl -X PATCH
	-H "Authorization: Bearer {{auth0_token}}"
	-H "Content-Type: application/json"
	-d '{
  "name": "",
  "client_secret": "",
  "logo_uri": "",
  "callbacks": [
    ""
  ],
  "allowed_origins": [
    ""
  ],
  "client_aliases": [
    ""
  ],
  "allowed_clients": [
    ""
  ],
  "allowed_logout_urls": [
    ""
  ],
  "jwt_configuration": {
    "lifetime_in_seconds": 0,
    "secret_encoded": true,
    "scopes": {},
    "alg": ""
  },
  "encryption_key": {
    "pub": "",
    "cert": "",
    "subject": ""
  },
  "sso": true,
  "custom_login_page_on": true,
  "token_endpoint_auth_method": "",
  "app_type": "",
  "is_first_party": true,
  "custom_login_page": "",
  "custom_login_page_preview": "",
  "form_template": "",
  "addons": {
    "aws": {},
    "azure_blob": {},
    "azure_sb": {},
    "rms": {},
    "mscrm": {},
    "slack": {},
    "box": {},
    "cloudbees": {},
    "concur": {},
    "dropbox": {},
    "echosign": {},
    "egnyte": {},
    "firebase": {},
    "newrelic": {},
    "office365": {},
    "salesforce": {},
    "salesforce_api": {},
    "salesforce_sandbox_api": {},
    "samlp": {},
    "layer": {},
    "sap_api": {},
    "sharepoint": {},
    "springcm": {},
    "wams": {},
    "wsfed": {},
    "zendesk": {},
    "zoom": {}
  },
  "resource_servers": [
    {
      "identifier": "",
      "scopes": [
        ""
      ]
    }
  ],
  "client_metadata": {},
  "mobile": {
    "android": {},
    "ios": {}
  }
}'
https://{{auth0_domain}}/api/v2/clients/:id

Postman Collection Item JSON

{
  "name": "Update a client",
  "request": {
    "method": "PATCH",
    "header": [
      {
        "key": "Authorization",
        "value": "Bearer {{auth0_token}}"
      },
      {
        "key": "Content-Type",
        "value": "application/json"
      }
    ],
    "body": {
      "mode": "raw",
      "raw": "{\r\n  \"name\": \"\",\r\n  \"client_secret\": \"\",\r\n  \"logo_uri\": \"\",\r\n  \"callbacks\": [\r\n    \"\"\r\n  ],\r\n  \"allowed_origins\": [\r\n    \"\"\r\n  ],\r\n  \"client_aliases\": [\r\n    \"\"\r\n  ],\r\n  \"allowed_clients\": [\r\n    \"\"\r\n  ],\r\n  \"allowed_logout_urls\": [\r\n    \"\"\r\n  ],\r\n  \"jwt_configuration\": {\r\n    \"lifetime_in_seconds\": 0,\r\n    \"secret_encoded\": true,\r\n    \"scopes\": {},\r\n    \"alg\": \"\"\r\n  },\r\n  \"encryption_key\": {\r\n    \"pub\": \"\",\r\n    \"cert\": \"\",\r\n    \"subject\": \"\"\r\n  },\r\n  \"sso\": true,\r\n  \"custom_login_page_on\": true,\r\n  \"token_endpoint_auth_method\": \"\",\r\n  \"app_type\": \"\",\r\n  \"is_first_party\": true,\r\n  \"custom_login_page\": \"\",\r\n  \"custom_login_page_preview\": \"\",\r\n  \"form_template\": \"\",\r\n  \"addons\": {\r\n    \"aws\": {},\r\n    \"azure_blob\": {},\r\n    \"azure_sb\": {},\r\n    \"rms\": {},\r\n    \"mscrm\": {},\r\n    \"slack\": {},\r\n    \"box\": {},\r\n    \"cloudbees\": {},\r\n    \"concur\": {},\r\n    \"dropbox\": {},\r\n    \"echosign\": {},\r\n    \"egnyte\": {},\r\n    \"firebase\": {},\r\n    \"newrelic\": {},\r\n    \"office365\": {},\r\n    \"salesforce\": {},\r\n    \"salesforce_api\": {},\r\n    \"salesforce_sandbox_api\": {},\r\n    \"samlp\": {},\r\n    \"layer\": {},\r\n    \"sap_api\": {},\r\n    \"sharepoint\": {},\r\n    \"springcm\": {},\r\n    \"wams\": {},\r\n    \"wsfed\": {},\r\n    \"zendesk\": {},\r\n    \"zoom\": {}\r\n  },\r\n  \"resource_servers\": [\r\n    {\r\n      \"identifier\": \"\",\r\n      \"scopes\": [\r\n        \"\"\r\n      ]\r\n    }\r\n  ],\r\n  \"client_metadata\": {},\r\n  \"mobile\": {\r\n    \"android\": {},\r\n    \"ios\": {}\r\n  }\r\n}"
    },
    "url": {
      "raw": "https://{{auth0_domain}}/api/v2/clients/:id",
      "protocol": "https",
      "host": [
        "{{auth0_domain}}"
      ],
      "path": [
        "api",
        "v2",
        "clients",
        ":id"
      ],
      "variable": [
        {
          "key": "id",
          "type": "any"
        }
      ]
    },
    "description": "<strong>Important:</strong> The <code>client_secret</code> and <code>encryption_key</code> attributes can only be updated with the <code>update:client_keys</code> scope."
  },
  "response": [
  ]
}