Click or drag to resize

SSMapServicesUpdateSite Method


Updates a Site Branding

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

Parameters

data  SiteMgrInfo
Information to update the Site Branding

Return Value

XHRServiceResponseGenericSiteMgrInfo

Information of Site Branding after update

Example
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

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