WorkflowServicesDeleteWorkflowDefinition Method
|
Deletes a Workflow Definition
Namespace: IngeniuxCMServiceAssembly: IngeniuxCMService (in IngeniuxCMService.dll) Version: 10.6.492
Syntaxpublic XHRServiceResponseGeneric<WorkflowDefinitionDeleteOutput> DeleteWorkflowDefinition(
WorkflowSimpleInfoBase data
)
Public Function DeleteWorkflowDefinition (
data As WorkflowSimpleInfoBase
) As XHRServiceResponseGeneric(Of WorkflowDefinitionDeleteOutput)
public:
virtual XHRServiceResponseGeneric<WorkflowDefinitionDeleteOutput^>^ DeleteWorkflowDefinition(
WorkflowSimpleInfoBase^ data
) sealed
abstract DeleteWorkflowDefinition :
data : WorkflowSimpleInfoBase -> XHRServiceResponseGeneric<WorkflowDefinitionDeleteOutput>
override DeleteWorkflowDefinition :
data : WorkflowSimpleInfoBase -> XHRServiceResponseGeneric<WorkflowDefinitionDeleteOutput> Parameters
- data WorkflowSimpleInfoBase
Object containing the Id of the Workfloe Definition to be deleted
Example
Sample JSON input
{
"data": {
"id": "WorkflowDefinitions/3"
}
}
Return Value
XHRServiceResponseGenericWorkflowDefinitionDeleteOutputResult of the delete operation
Example
Sample JSON return
{
"code": 0,
"error": null,
"message": {
"id": "WorkflowDefinitions\/3",
"message": null,
"success": true
}
}
See Also