PublishingSystemManagerServicesDeleteProfiles Method
|
Deletes collection of Publishing Profiles
Namespace:
IngeniuxCMService
Assembly:
IngeniuxCMService (in IngeniuxCMService.dll) Version: 10.5.94
Syntax public XHRServiceResponseGeneric<PublishingSystemObjectsDeleteResult> DeleteProfiles(
UniqueObjectsDeleteParam data
)
Public Function DeleteProfiles (
data As UniqueObjectsDeleteParam
) As XHRServiceResponseGeneric(Of PublishingSystemObjectsDeleteResult)
public:
virtual XHRServiceResponseGeneric<PublishingSystemObjectsDeleteResult^>^ DeleteProfiles(
UniqueObjectsDeleteParam^ data
) sealed
abstract DeleteProfiles :
data : UniqueObjectsDeleteParam -> XHRServiceResponseGeneric<PublishingSystemObjectsDeleteResult>
override DeleteProfiles :
data : UniqueObjectsDeleteParam -> XHRServiceResponseGeneric<PublishingSystemObjectsDeleteResult>
Parameters
- data
- Type: UniqueObjectsDeleteParam
Object containing array of Id of Publishing Profiles to be deleted
Examples
Sample JSON input
{
"data": {
"selectedIds": ["PublishingProfiles/1"]
}
}
Return Value
Type:
XHRServiceResponseGenericPublishingSystemObjectsDeleteResultObject containing array of Publishing Profile Ids that were deleted
Examples
Sample JSON return
{
"code": 0,
"error": null,
"message": {
"deletedIds": ["PublishingProfiles\/1"]
}
}
Remarks Non-existing Publishing Profiles will be ignored
See Also