v7

latestOpenAPI 3.0.1Apache 2.02026-08-086179702.3 MB
App migration

Get workflow transition rule configurations

Returns configurations for workflow transition rules migrated from server to cloud and owned by the calling Connect app.

post/rest/atlassian-connect/1/migration/workflow/rule/search

Headers

Atlassian-Transfer-Idstring uuid required

The app migration transfer ID.

Request body

expandstring

Use expand to include additional information in the response. This parameter accepts transition which, for each rule, returns information about the transition the rule is assigned to.

ruleIdsstring[] required

The list of workflow rule IDs.

workflowEntityIdstring uuid required

The workflow ID.

Example request

{
  "expand": "transition",
  "ruleIds": [
    "55d44f1d-c859-42e5-9c27-2c5ec3f340b1"
  ],
  "workflowEntityId": "a498d711-685d-428d-8c3e-bc03bb450ea7"
}

Response

Returned if the request is successful.

invalidRulesstring[]

List of workflow rule IDs that do not belong to the workflow or can not be found.

workflowEntityIdstring uuid

The workflow ID.

Example response

{
  "invalidRules": [
    "55d44f1d-c859-42e5-9c27-2c5ec3f340b1"
  ],
  "workflowEntityId": "a498d711-685d-428d-8c3e-bc03bb450ea7"
}