WorkflowServicesDeleteWorkflowDefinition Method
|
Deletes a Workflow Definition
Namespace:
IngeniuxCMService
Assembly:
IngeniuxCMService (in IngeniuxCMService.dll) Version: 10.5.94
Syntax public 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
- Type: WorkflowSimpleInfoBase
Object containing the Id of the Workfloe Definition to be deleted
Examples
Sample JSON input
{
"data": {
"id": "WorkflowDefinitions/3"
}
}
Return Value
Type:
XHRServiceResponseGenericWorkflowDefinitionDeleteOutputResult of the delete operation
Examples
Sample JSON return
{
"code": 0,
"error": null,
"message": {
"id": "WorkflowDefinitions\/3",
"message": null,
"success": true
}
}
See Also