Integrations
Jira
APIs
Update Issue Status

Update Issue Status

Transitions an issue to a new status.

For more information on the API for updating an issue status, see Transition Issue (opens in a new tab).

SDK Import:

from admyral.actions import update_jira_issue_status

Arguments:

Arugment NameDescriptionRequired
Issue ID or Key issue_id_or_keyThe ID or the key of the issue to transition.Yes
Status statusThe status to set the issue to.Yes

Returns

Nothing.

Required Secrets

Secret PlaceholderDescription
JIRA_SECRETJira secret. See Jira setup

SDK Example

update_jira_issue_status(
	issue_id_or_key="SJ-23",
	status="31",
	secrets={
		"JIRA_SECRET": "my_stored_jira_secret"
	}
)