Click or drag to resize

PublishingSystemManagerServicesDeleteProfiles Method


Deletes collection of Publishing Profiles

Namespace:  IngeniuxCMService
Assembly:  IngeniuxCMService (in IngeniuxCMService.dll) Version: 10.3.169
Syntax
public XHRServiceResponseGeneric<PublishingSystemObjectsDeleteResult> DeleteProfiles(
	UniqueObjectsDeleteParam data
)

Parameters

data
Type: UniqueObjectsDeleteParam

Object containing array of Id of Publishing Profiles to be deleted

Examples
Sample JSON input
JavaScript
{
    "data": {
        "selectedIds": ["PublishingProfiles/1"]
    }
}

Return Value

Type: XHRServiceResponseGenericPublishingSystemObjectsDeleteResult

Object containing array of Publishing Profile Ids that were deleted

Examples
Sample JSON return
JavaScript
{
    "code": 0,
    "error": null,
    "message": {
        "deletedIds": ["PublishingProfiles\/1"]
    }
}
Remarks

Non-existing Publishing Profiles will be ignored

See Also