public/api-v2/workflow/Invoke-JiraUpdateWorkflowTransitionProperty.ps1
#https://developer.atlassian.com/cloud/jira/platform/rest/v2/#api-rest-api-2-workflow-transitions-transitionId-properties-put function Invoke-JiraUpdateWorkflowTransitionProperty { [CmdletBinding()] param ( # The name of the workflow that the transition belongs to [Parameter(Mandatory, Position=0)] [string] $WorkflowName, # the ID of the transition [Parameter(Mandatory,Position=1)] [int64] $TransitionId, # The key of the property to create [Parameter(Mandatory,Position=2)] [string] $PropertyKey, # The value of the property to create [Parameter(Mandatory,Position=3)] [string] $Value, # Set this flag to set the property of the transition on the draft version of the workflow [Parameter()] [switch] $Draft, # The JiraContext object to use for the request [Parameter()] [JiraContext] $JiraContext ) process { $functionPath = "/rest/api/2/workflow/transitions/$TransitionId/properties" $verb = "PUT" $query = New-Object RestMethodQueryParams @{ key = $PropertyKey workflowName = $WorkflowName } if($PSBoundParameters.ContainsKey("Draft")){$query.Add("workflowMode","draft")} $body = New-Object RestMethodJsonBody @{ value = $Value } $method = New-Object BodyRestMethod @($functionPath,$verb,$query,$body) $method.Invoke($JiraContext) } } |