| PublishingSystemManagerServicesDeleteProfiles Method  | 
        
        
          
         
            Deletes collection of Publishing Profiles
            
 
    Namespace: 
   IngeniuxCMService
    Assembly:
   IngeniuxCMService (in IngeniuxCMService.dll) Version: 10.3.169
 Syntax
Syntaxpublic 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 Examples
            Sample JSON input
             {
    "data": {
        "selectedIds": ["PublishingProfiles/1"]
    }
}
Return Value
Type: 
XHRServiceResponseGenericPublishingSystemObjectsDeleteResultObject containing array of Publishing Profile Ids that were deleted
 Examples
Examples
            Sample JSON return
            
{
    "code": 0,
    "error": null,
    "message": {
        "deletedIds": ["PublishingProfiles\/1"]
    }
} Remarks
RemarksNon-existing Publishing Profiles will be ignored
 See Also
See Also