Click or drag to resize

SystemOptionsServicesGetData Method


Retrieves a single Configuration by its unique Id

Namespace:  IngeniuxCMService
Assembly:  IngeniuxCMService (in IngeniuxCMService.dll) Version: 10.3.169
Syntax
public XHRServiceResponseGeneric<SystemOptionsGetOutputInfo> GetData(
	SystemOptionsGetParam data
)

Parameters

data
Type: SystemOptionsGetParam

Object containing the unique Id of the configuration entry

Examples
Sample JSON input
JavaScript
{
    "data": {
        "id": "iceSettings"
    }
}

Return Value

Type: XHRServiceResponseGenericSystemOptionsGetOutputInfo

Data of the configuration entry

Examples
Sample JSON return
JavaScript
{
    "code": 0,
    "error": null,
    "message": {
        "data": "{\"enableIce\":\"False\",\"fieldMarkBaseZIndex\":\"100\",\"fieldMarkerColor\":\"#3064b7\",\"htmlEditorMatchPreviewStyle\":\"True\",\"invokedFieldMarkerColor\":\"ff8000\"}",
        "success": true
    }
}
Remarks

Please note that the "data" property of the response is serialize JSON string. It will be the same JSON string for SOAP services too.

See Also