Chilkat Online Tools

PureBasic / Auth0 Management API / Update tenant settings

Back to Collection Items

IncludeFile "CkJsonObject.pb"
IncludeFile "CkStringBuilder.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.

    ; {
    ;   "change_password": {
    ;     "enabled": true,
    ;     "html": ""
    ;   },
    ;   "guardian_mfa_page": {
    ;     "enabled": true,
    ;     "html": ""
    ;   },
    ;   "error_page": {
    ;     "html": "",
    ;     "show_log_link": true,
    ;     "url": ""
    ;   },
    ;   "flags": {
    ;     "change_pwd_flow_v1": true,
    ;     "enable_client_connections": true,
    ;     "enable_apis_section": true,
    ;     "enable_pipeline2": true
    ;   },
    ;   "friendly_name": "",
    ;   "picture_url": "",
    ;   "support_email": "",
    ;   "support_url": "",
    ;   "allowed_logout_urls": [
    ;     ""
    ;   ],
    ;   "session_lifetime": 0
    ; }

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

    CkJsonObject::ckUpdateBool(json,"change_password.enabled",1)
    CkJsonObject::ckUpdateString(json,"change_password.html","")
    CkJsonObject::ckUpdateBool(json,"guardian_mfa_page.enabled",1)
    CkJsonObject::ckUpdateString(json,"guardian_mfa_page.html","")
    CkJsonObject::ckUpdateString(json,"error_page.html","")
    CkJsonObject::ckUpdateBool(json,"error_page.show_log_link",1)
    CkJsonObject::ckUpdateString(json,"error_page.url","")
    CkJsonObject::ckUpdateBool(json,"flags.change_pwd_flow_v1",1)
    CkJsonObject::ckUpdateBool(json,"flags.enable_client_connections",1)
    CkJsonObject::ckUpdateBool(json,"flags.enable_apis_section",1)
    CkJsonObject::ckUpdateBool(json,"flags.enable_pipeline2",1)
    CkJsonObject::ckUpdateString(json,"friendly_name","")
    CkJsonObject::ckUpdateString(json,"picture_url","")
    CkJsonObject::ckUpdateString(json,"support_email","")
    CkJsonObject::ckUpdateString(json,"support_url","")
    CkJsonObject::ckUpdateString(json,"allowed_logout_urls[0]","")
    CkJsonObject::ckUpdateInt(json,"session_lifetime",0)

    ; Adds the "Authorization: Bearer {{auth0_token}}" header.
    CkHttp::setCkAuthToken(http, "{{auth0_token}}")
    CkHttp::ckSetRequestHeader(http,"Content-Type","application/json")

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

    CkJsonObject::ckEmitSb(json,sbRequestBody)

    resp.i = CkHttp::ckPTextSb(http,"PATCH","https://{{auth0_domain}}/api/v2/tenants/settings",sbRequestBody,"utf-8","application/json",0,0)
    If CkHttp::ckLastMethodSuccess(http) = 0
        Debug CkHttp::ckLastErrorText(http)
        CkHttp::ckDispose(http)
        CkJsonObject::ckDispose(json)
        CkStringBuilder::ckDispose(sbRequestBody)
        ProcedureReturn
    EndIf

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



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


    ProcedureReturn
EndProcedure

Curl Command

curl -X PATCH
	-H "Authorization: Bearer {{auth0_token}}"
	-H "Content-Type: application/json"
	-d '{
  "change_password": {
    "enabled": true,
    "html": ""
  },
  "guardian_mfa_page": {
    "enabled": true,
    "html": ""
  },
  "error_page": {
    "html": "",
    "show_log_link": true,
    "url": ""
  },
  "flags": {
    "change_pwd_flow_v1": true,
    "enable_client_connections": true,
    "enable_apis_section": true,
    "enable_pipeline2": true
  },
  "friendly_name": "",
  "picture_url": "",
  "support_email": "",
  "support_url": "",
  "allowed_logout_urls": [
    ""
  ],
  "session_lifetime": 0
}'
https://{{auth0_domain}}/api/v2/tenants/settings

Postman Collection Item JSON

{
  "name": "Update tenant settings",
  "request": {
    "method": "PATCH",
    "header": [
      {
        "key": "Authorization",
        "value": "Bearer {{auth0_token}}"
      },
      {
        "key": "Content-Type",
        "value": "application/json"
      }
    ],
    "body": {
      "mode": "raw",
      "raw": "{\r\n  \"change_password\": {\r\n    \"enabled\": true,\r\n    \"html\": \"\"\r\n  },\r\n  \"guardian_mfa_page\": {\r\n    \"enabled\": true,\r\n    \"html\": \"\"\r\n  },\r\n  \"error_page\": {\r\n    \"html\": \"\",\r\n    \"show_log_link\": true,\r\n    \"url\": \"\"\r\n  },\r\n  \"flags\": {\r\n    \"change_pwd_flow_v1\": true,\r\n    \"enable_client_connections\": true,\r\n    \"enable_apis_section\": true,\r\n    \"enable_pipeline2\": true\r\n  },\r\n  \"friendly_name\": \"\",\r\n  \"picture_url\": \"\",\r\n  \"support_email\": \"\",\r\n  \"support_url\": \"\",\r\n  \"allowed_logout_urls\": [\r\n    \"\"\r\n  ],\r\n  \"session_lifetime\": 0\r\n}"
    },
    "url": {
      "raw": "https://{{auth0_domain}}/api/v2/tenants/settings",
      "protocol": "https",
      "host": [
        "{{auth0_domain}}"
      ],
      "path": [
        "api",
        "v2",
        "tenants",
        "settings"
      ]
    }
  },
  "response": [
  ]
}