Security API

Type

it returns the security configuration type

GET/rest/security/type
 Query parameters  none
 Header  Content-Type: application/json
 Header/Parameter  tenant
 Body none
Returns
  •  "enabled"
    • configuration and consultations require authentication
  • "disabled"
    • no authentication
  • "consultationOnly"
    • configuration requires authentication, consultation doesn't
Required role  none

Example request

curl 'http://localhost:8080/mwp/rest/security/type' -H 'Content-Type: application/json' -H 'tenant:default'

Example response

{"securityType" : "enabled"}

 

Feedback