deleteWorkflowTransitionRuleConfigurations method

Future<WorkflowTransitionRulesUpdateErrors> deleteWorkflowTransitionRuleConfigurations({
  1. required WorkflowsWithTransitionRulesDetails body,
})

Deletes workflow transition rules from one or more workflows. These rule types are supported:

post functions * conditions * validators

Only rules created by the calling Connect app can be deleted.

Permissions required: Only Connect apps can use this operation.

Implementation

Future<WorkflowTransitionRulesUpdateErrors>
    deleteWorkflowTransitionRuleConfigurations(
        {required WorkflowsWithTransitionRulesDetails body}) async {
  return WorkflowTransitionRulesUpdateErrors.fromJson(await _client.send(
    'put',
    'rest/api/3/workflow/rule/config/delete',
    body: body.toJson(),
  ));
}