SystemOptionsServicesGetData Method
|
Retrieves a single Configuration by its unique Id
Namespace:
IngeniuxCMService
Assembly:
IngeniuxCMService (in IngeniuxCMService.dll) Version: 10.5.94
Syntax public XHRServiceResponseGeneric<SystemOptionsGetOutputInfo> GetData(
SystemOptionsGetParam data
)
Public Function GetData (
data As SystemOptionsGetParam
) As XHRServiceResponseGeneric(Of SystemOptionsGetOutputInfo)
public:
virtual XHRServiceResponseGeneric<SystemOptionsGetOutputInfo^>^ GetData(
SystemOptionsGetParam^ data
) sealed
abstract GetData :
data : SystemOptionsGetParam -> XHRServiceResponseGeneric<SystemOptionsGetOutputInfo>
override GetData :
data : SystemOptionsGetParam -> XHRServiceResponseGeneric<SystemOptionsGetOutputInfo>
Parameters
- data
- Type: SystemOptionsGetParam
Object containing the unique Id of the configuration entry
Examples
Sample JSON input
{
"data": {
"id": "iceSettings"
}
}
Return Value
Type:
XHRServiceResponseGenericSystemOptionsGetOutputInfoData of the configuration entry
Examples
Sample JSON return
{
"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