Skip to main content

/Info/Config/:application

Gets or sets custom configuration information for the current user, for the given application.

Request Method

GET or POST

URL Parameters

application

Required. This is the name of the application.

Request Body Details

This endpoint uses the following property of the request body:

CONFIG

Optional. This property can be a JSON document containing custom configuration information.

One JSON document may be stored per user under any given application.

Example Request

  • Request Method:

    POST

  • Request URL:

    https://localhost/api/deepsee/v3/Info/Config/myapp

    For comments on the possible forms of the URL, see Introduction to the Business Intelligence REST API.

  • Request Body:

    {
      "CONFIG": {
        "CUSTOM1": "value1",
        "CUSTOM2": "value2",
        "CUSTOM3": [
          "TEST1",
          "TEST2",
          "TEST3"
        ]
      }
    }
    

Sample Response

{
    "Info": {
        "Application": "myapp",
        "Error": ""
    },
    "Result": {}
}
FeedbackOpens in a new tab