/api/space/application-management/platform/settings/authmode

The following operations are supported on this resource:

  • GET - Get configuration settings for authentication mode
  • PUT - Update configuration settings for authentication mode
GET /platform/settings/authmode Version 1

This API retrieves configuration settings for authentication mode.

Sample Usage

GET /platform/settings/authmode


  • Sample Output XML:
    <authmode uri="/api/space/application-management/applications/platform/settings/authmode">
        <auth-mode>passwd</auth-mode>
    </authmode>

  • Sample Output JSON:

    {
      "authmode": {
          "@uri": "/api/space/application-management/platform/settings/authmode",
          "auth-mode":"passwd"
      }
    }

  • Access Control

    The following capabilities are required to access this API: ModifyApplicationSetting

    PUT /platform/settings/authmode Version 1

    This API updates configuration settings for authentication mode.

    Sample Usage

    PUT /platform/settings/authmode


  • Sample Input XML:
    <authmode>
        <auth-mode>passwd</auth-mode>
    </authmode>

  • Sample Output XML:
    <authmode uri="/api/space/application-management/applications/platform/settings/authmode">
         <auth-mode>passwd</auth-mode>
    </authmode>

  • Sample Input JSON:

    {
      "authmode": {
          "auth-mode":passwd
      }
    }

  • Sample Output JSON:

    {
      "authmode":{
          "@uri": "/api/space/application-management/platform/settings/authmode",
          "auth-mode":passwd
      }
    }

  • Access Control

    The following capabilities are required to access this API: ModifyApplicationSetting