Click or drag to resize

WorkflowServicesDeleteWorkflowDefinition Method


Deletes a Workflow Definition

Namespace:  IngeniuxCMService
Assembly:  IngeniuxCMService (in IngeniuxCMService.dll) Version: 10.3.169
Syntax
public XHRServiceResponseGeneric<WorkflowDefinitionDeleteOutput> DeleteWorkflowDefinition(
	WorkflowSimpleInfoBase data
)

Parameters

data
Type: WorkflowSimpleInfoBase

Object containing the Id of the Workfloe Definition to be deleted

Examples
Sample JSON input
JavaScript
{
    "data": {
        "id": "WorkflowDefinitions/3"
    }
}

Return Value

Type: XHRServiceResponseGenericWorkflowDefinitionDeleteOutput

Result of the delete operation

Examples
Sample JSON return
JavaScript
{
    "code": 0,
    "error": null,
    "message": {
        "id": "WorkflowDefinitions\/3",
        "message": null,
        "success": true
    }
}
See Also