/api/space/application-management/applications/{id}/settings-config (v1)

The following operations are supported on this resource:

  • GET - Get application's settings
  • PUT - Update application's settings
GET /applications/{id}/settings-config Version 1

Application settings or app-settings are the configurable settings for an application. This API retrieves the "application setting configuration" for an application.

Sample Usage

GET /applications/{id}/settings-config


  • Parameters:
    Name Type URI Type Description Required
    app-id int Path The application ID for which details are to be fetched. Y
  • Sample Output XML:
    <configuration>
        <Hello-World-Configuration>
           <Schedule-After>10</Schedule-After>
        </Hello-World-Configuration>
    </configuration>

  • Sample Output JSON:
    {
      "configuration": {
          "Hello-World-Configuration": {
              "Schedule-After": "10"
          }
      }
    }

  • Access Control

    The following capabilities are required to access this API: ModifyApplicationSetting

      For the current version of this API, refer to :
    • version 2

    PUT /applications/{id}/settings-config Version 1

    This API modifies the application config settings based on an application ID.

    Sample Usage

    PUT /applications/{id}/settings-config


    • Parameters:
      Name Type URI Type Description Required
      app-id int Path The application ID for which details need to be updated. Y
  • Sample Input XML:
    <configuration>
        <Hello-World-Configuration>
           <Schedule-After>10</Schedule-After>
        </Hello-World-Configuration>
    </configuration>

  • Sample Output XML:
    <configuration>
        <Hello-World-Configuration>
           <Schedule-After>10</Schedule-After>
        </Hello-World-Configuration>
    </configuration>

  • Sample Input JSON:
    {
      "configuration": {
        "Hello-World-Configuration": {
            "Schedule-After": "10"
        }
      }
    }

  • Sample Output JSON:
    {
      "configuration": {
        "Hello-World-Configuration": {
            "Schedule-After": "10"
        }
      }
    }

  • Access Control

    The following capabilities are required to access this API: ModifyApplicationSetting

      For the current version of this API, refer to :
    • version 2