Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

See JSONPath for tutorials examples on how to define your JSON path for your use case

Issue object

You may access the issue object by using the  {{issue}} variable notation followed by the getter that you would like to retrieve. 


VariableDescription
{{issue.summary }}returns the issue summary
{{issue.key}}returns the issue key
{{issue.type }}returns issue type
{{issue.assignee }}returns the assignee. Chain the notation with {{issue.assignee.name}} for the assignee name. 
{{issue.reporter }}returns the reporter
{{issue.watchers }}returns a list of watchers such as: ["user1","user2"]
{{issue.affectsversion }}returns the assigneeaffects version
{{issue.fixversion }}returns the assigneefix version
{{issue.components }}returns the assigneecomponents
{{issue.labels }}returns the assigneelabels
{{issue.resolution }}returns the assigneeresolution
{{issue.attachments }}returns the assigneeattachment
{{issue.comments }}returns the assigneecomments. See working with collections on how to iterate this
{{issue.worklog }}returns the assigneeworklog
{{issue.votes }}returns the assigneeissue votes
{{issue.due }}returns the issue due date
{{issue.description }}returns issue description
{{issue.priority }}returns the priority of the issue
{{issue.created }}returns the created date of the issue
{{issue.updated }}returns the updated date of the issue
{{issue.status }}returns the status of the issue
{{issue.customfield_xxxxx}}returns the value of the custom field. example {{issue.customfield_10100}}

...