Click or drag to resize

SSMapServicesCreateSite Method


Creates a new Site Branding with provided information

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

Parameters

data  SiteMgrInfo
Information to create the Site Branding

Return Value

XHRServiceResponseGenericSiteMgrInfo

Information of created Site Branding

Example
Sample JSON return
JavaScript
{
    "code": 0,
    "error": null,
    "message": {
        "Name": "Marketing",
        "SearchString": "marketing",
        "SiteGroup": "marketing"
    }
}
Remarks

If another Site Branding with the same name already exists, returns error status

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