/Info/Config/:application
Request Method
GET, POST or DELETE
URL Parameters
Required. This is the name of the application.
Request Body Details
This endpoint uses the following properties of the request body for POST requests:
Optional. If no user is specified, Business Intelligence attempts to retrieve or modify the configuration for the current user.
Optional. Provide the value "GET" to retrieve the configuration for the user. Provide the value "DELETE" to delete the configuration for the user. If no action is provided, Business Intelligence attempts to set the configuration for the user as specified by the CONFIG property.
Optional. This property is a JSON object containing custom configuration information.
For a given application, one JSON configuration object may be stored per user.
Example Request
-
Request Method:
POST
-
Request URL:
https://localhost/biserver/api/deepsee/v3/research/Info/Config/myapp
For comments on the possible forms of the URL, see Introduction to the Business Intelligence REST API.
-
Request Body:
{ "USER": "_PUBLIC", "ACTION": "", "CONFIG": { "CUSTOM1": "value1", "CUSTOM2": "value2", "CUSTOM3": [ "value3", "value4", "value5" ] } }
Sample Response
{
"Info": {
"Application": "myapp",
"Error": ""
},
"Result": {}
}