SSMapServicesCreateSite Method
|
Creates a new Site Branding with provided information
Namespace:
IngeniuxCMService
Assembly:
IngeniuxCMService (in IngeniuxCMService.dll) Version: 10.5.94
Syntax public XHRServiceResponseGeneric<SiteMgrInfo> CreateSite(
SiteMgrInfo data
)
Public Function CreateSite (
data As SiteMgrInfo
) As XHRServiceResponseGeneric(Of SiteMgrInfo)
public:
virtual XHRServiceResponseGeneric<SiteMgrInfo^>^ CreateSite(
SiteMgrInfo^ data
) sealed
abstract CreateSite :
data : SiteMgrInfo -> XHRServiceResponseGeneric<SiteMgrInfo>
override CreateSite :
data : SiteMgrInfo -> XHRServiceResponseGeneric<SiteMgrInfo>
Parameters
- data
- Type: SiteMgrInfo
Information to create the Site Branding
Return Value
Type:
XHRServiceResponseGenericSiteMgrInfoInformation of created Site Branding
Examples
Sample JSON return
{
"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
Examples
Sample JSON input
{
"data": {
"Name": "Marketing",
"SearchString": "marketing",
"SiteGroup": "marketing"
}
}
See Also