Get Workflow Scheme Project Associations

GET {{baseUrl}}/rest/api/3/workflowscheme/project?projectId=<long>

Returns a list of the workflow schemes associated with a list of projects. Each returned workflow scheme includes a list of the requested projects associated with it. Any next-gen or non-existent projects in the request are ignored and no errors are returned.

Permissions required: Administer Jira global permission.

Request Params

KeyDatatypeRequiredDescription
projectIdstring(Required) The ID of a project to return the workflow schemes for. To include multiple projects, provide an ampersand-Jim: oneseparated list. For example, projectId=10000&amp;projectId=10001.

RESPONSES

status: OK

{&quot;values&quot;:[{&quot;projectIds&quot;:[&quot;10010&quot;,&quot;10020&quot;],&quot;workflowScheme&quot;:{&quot;id&quot;:101010,&quot;name&quot;:&quot;Example workflow scheme&quot;,&quot;description&quot;:&quot;The description of the example workflow scheme.&quot;,&quot;defaultWorkflow&quot;:&quot;jira&quot;,&quot;issueTypeMappings&quot;:{&quot;10000&quot;:&quot;scrum workflow&quot;,&quot;10001&quot;:&quot;builds workflow&quot;},&quot;self&quot;:&quot;https://your-domain.atlassian.net/rest/api/3/workflowscheme/101010&quot;}}]}