0

I'm trying to convert a JIRA issue to a subtask

That's what I'm doing:

converted_to_subtask = jira.update_issue_field(
    "FSTORE-326", {
        "issuetype": {"name": "Sub-task"}, "parent": {"key": "FSTORE-324"}
    })

Alas, I get an error 400.

What is the correct way to convert a JIRA task to subtask from Atlassian Python API?

Felix
  • 3,351
  • 6
  • 40
  • 68

1 Answers1

1

Unfortunately, Jira API does not support this operation yet.

Sources: https://jira.atlassian.com/browse/JRACLOUD-27893 https://jira.atlassian.com/browse/JRASERVER-27893

SoftwareFactor
  • 8,430
  • 3
  • 30
  • 34