ADO.NET Provider for Jira

Build 24.0.9250

WorkflowSchemes

Create, modify, delete and query the available workflow schemes in Jira.

Note: This table is available only in the Jira Cloud version.

Select

The provider will use the Jira API to process filters that refer to Id while the rest of the filter is executed client side within the provider. The Jira APIs support filters using the equals (=) operator with Id.

For example, the below queries are processed server side.

Retrieve all the available workflow schemes:

SELECT * FROM WorkflowSchemes

Retrieve a specific workflow scheme by Id:

SELECT * FROM WorkflowSchemes WHERE Id = 10400

Insert

Name is required to insert. The following query creates a new workflow scheme:

INSERT INTO WorkflowSchemes (name, Description, DefaultWorkflow, IssueTypeMappingsAggregate) VALUES('Jira Service Management IT Support Workflow', 'Incident Management workflow for Jira Service Management.', 'jira', '{"10201": "jira"}')

Update

You can update by specifying the workflow scheme Id:

UPDATE WorkflowSchemes SET Name = 'Jira Updated Service Management IT Support Workflow', Description='Updated incident Management workflow for Jira Service Management.' WHERE Id =11526

Delete

Delete a workflow scheme by specifying the workflow scheme Id:

DELETE WorkflowSchemes WHERE Id=11526

Columns

Name Type ReadOnly References SupportedOperators Platform Description
Id [KEY] Integer True = Cloud

The ID of the workflow scheme.

Name String False Cloud

The name of the workflow scheme.

Description String False Cloud

The description of the workflow scheme.

IssueTypeMappingsAggregate String False Cloud

The issue type to workflow mappings aggregate, where each mapping is an issue type ID and workflow name pair.

DefaultWorkflow String False Cloud

The name of the default workflow for the workflow scheme.

Self String True Cloud

The self/url column.

Copyright (c) 2025 CData Software, Inc. - All rights reserved.
Build 24.0.9250