Click or drag to resize

SSMapServicesUpdateSite Method


Updates a Site Branding

Namespace:  IngeniuxCMService
Assembly:  IngeniuxCMService (in IngeniuxCMService.dll) Version: 10.3.169
Syntax
public XHRServiceResponseGeneric<SiteMgrInfo> UpdateSite(
	SiteMgrInfo data
)

Parameters

data
Type: SiteMgrInfo
Information to update the Site Branding

Return Value

Type: XHRServiceResponseGenericSiteMgrInfo

Information of Site Branding after update

Examples
Sample JSON return
JavaScript
{
    "code": 0,
    "error": null,
    "message": {
        "Name": "Support",
        "SearchString": "support",
        "SiteGroup": "Support"
    }
}
Remarks

If Site Branding with matching name doesn't exist, returns error status

Examples
Sample JSON input
JavaScript
{
    "data": {
        "Name": "Support",
        "SearchString": "support",
        "SiteGroup": "Support"
    }
}
See Also