One of the main features of JWT for Jira Cloud is the easy access to Jira data through the use of field codes.
Depending on the selected Parsing mode, the available field codes will vary. Custom fields are shown if they are defined for a global context or if the "Jira Workflow Toolbox Cloud" user has browse permissions for the respective project.
JWT field codes are currently available to be used in post functions with the following Parsing modes:
Jira expressions use the Jira expression parsing mode and a different set of field codes. They can be used in post functions as well as in the Jira expression condition/validator.
If you want to include Jira expression field codes in the General mode or the Logical mode, simply use the JWT expression parser function jiraExpression(), e.g. %{jiraExpression(issue?.sprint?.endDate)} to get the end date of the sprint (this field is not available as JWT field code).
General information about JWT field codes
Field code notation
Depending on the context in which they are being used, field codes will contain a prefix following this notation:{origin.field}.
Available contexts (or origins) in JWT for Jira Cloud are:
|
Context |
Description |
|---|---|
|
|
The issue that is processed by the workflow post function |
|
|
The parent of the issue that is processed by the workflow post function - if available |
|
|
The field value will be retrieved from the element currently being processed by a workflow function capable of handling multiple elements (e.g. Create issue post function). Elements can be:
depending on your configuration. Read more about seeds. |
|
|
Some data does not have an issue context (e.g. the currently logged in user or the system date and time) |
|
|
This field code context is only available in the post function Execute remote action. It is used to access data which is returned by the executed action. |
The prefix, denoting the origin (where the data should be read from / written to), is a referential part of the field code and will be inserted into the expression whenever you select a field from a drop-down list.
Here are some examples:
|
Field code |
Output |
|---|---|
|
|
The description of the current issue |
|
|
The summary of the parent issue |
|
|
The project lead of the project the issue belong to |
|
|
The summary of the current element of the issue list when using the mode "Multiple issues based on an issue list" |
|
|
The text of the current element of the text list when using the mode "Multiple issues based on a text list" |
|
|
The value of the current number when using the mode "Multiple issues based on a number" |
|
|
The current user (executing the post function) |
|
|
The status of the action that was executed in the post function Execute remote action. |
Numbers vs Text
Field codes must always be enclosed by curly brackets. If they are used for texts, the brackets must be preceded by a percent sign % .
-
Numeric fields can be referenced as numbers using the following notation:
{issue.somenumberfield}. (no preceding % sign)
-
If the field is not set or doesn't return a number (e.g. if the issue summary equals "Issue's summary" and you enter
{issue.summary}), it is evaluated tonull.
-
-
Text fields: Any field type or data type can be transformed to text, so any field can be referenced as a text value using the following notation:
%{issue.somefield}-
If a field has no value (
null), an empty text will be returned.
-
-
Cascading Select fields are treated as text fields, where i is the index that represents the level to be accessed. ( i = 0 is used for base level) are notated as
%{issue.somefield.i}
For some fields not only their value can be returned, but also the respective ID. This ID is typically used when writing a field value, but it can also be used when reading a field value.
If a custom field is able to return an ID it can be accessed using the field code %{somefield.id} . The column ID in the lists below shows a value for the respective field, if applicable.
Available JWT field codes
-
Issue related fields can belong to an
issueor it'sparent. In case you want to retrieve the value of the parent issue, "issue" has to be replaced"parent" as in%{parent.summary}. In case, a field is not set (or even non-existent), this field is evaluated tonull, i.e. an empty text.
-
The field codes for all custom fields are notated in the following format:
%{issue.cfnnnnn}, where nnnnn contains the Jira custom field ID. -
If Jira Software is installed on your Jira instance, you can retrieve the data stored in the Jira Software related field with Jira Workflow Toolbox for Jira Cloud as well. You can access those, like any other custom field in your instance, i.e.
%{issue.cfnnnn},where nnnnn contains the Jira custom field ID . -
Writable fields can be updated by JWT for Jira Cloud post functions . All writable fields are also readable.
-
The field codes for all custom fields are notated in the following format:
%{issue.cfnnnnn}, where nnnnn contains the Jira custom field ID. -
All custom field types are supported for reading in JWT expressions, including fields whose type does not appear in the field injector. In these cases, the raw value is exposed so you can handle it yourself (for example using getFromJSON
()for JSON content).
Please note that the field you want to set must be located on the corresponding screen and the executing user must have all the necessary permissions and access to the issue.
General information about Jira expression field codes
Introduction
All fields, methods and operators listed for the Jira eypression field codes have been taken from the official documentation and cannot be extended by JWT for Jira Cloud.
In the list we use optional chaining to avoid errors when trying to access field values of null objects. In case a field is not set, null is returned for the respective attribute, e.g. issue?.resolution?.name will return null in case the resolution is not set. Without the optional chaining an error will be returned.
If a .map() function is used as field code (e.g.issue?.links?.map(link => link.linkedIssue.key) for Keys of linked issues ), then this map will return an error in case the issue does not have links. You have to ensure in your final expression that this error will be handled. This can be done by using the field code only when there are issue links, e.g. issue.links != null && issue?.links?.map(link => link.linkedIssue.key).
All custom fields are available and can be referenced by one of the following:
-
ID:
issue.customfield_10010for default custom field types -
key:
issue['com.my.app.field-key']for custom field types provided by 3rd party apps
Custom fields are returned as JSON values, using exactly the same format as in the issue REST API. You have to access the respective property, e.g. issue.customfield_10010.value
Any field that is hidden in the active field configuration for the current issue will be returned as null, regardless of its actual value. Read more about hiding and showing fields in the documentation on the Changing a field configuration page.
All available field codes in one place!
Available field codes
Attachments
| Field name | JWT field code | Jira expression field code | Example output |
|---|---|---|---|
| Attachment author |
|
557068:145e0983-5707-439c-80e4-1160dd57g114 |
|
| Attachment size |
|
80000 |
|
| Attachments |
|
|
file1.txt,readme.pdf,screenshot.png |
| Attachment file name |
|
img01.png |
|
| Attachment created |
|
2021-07-26T06:38:17.622-1100 |
|
| Attachment ID |
|
10042 |
|
| Attachment media type |
|
image/jpeg |
Comments
| Field name | JWT field code | Jira expression field code | Example output |
|---|---|---|---|
| Comment author |
|
557068:145e0983-5707-439c-80e4-1160dd57g114 |
|
| Last public comment date |
|
|
Thu Feb 13 10:34:55 UTC 2020 |
| Last commented by a User Flag |
|
|
|
| Last comment |
|
|
Take your Jira to the next level by using JWT for Jira Cloud |
| Comment updated |
|
2020-02-24T23:10:57.293-1100 |
|
| Comment ID |
|
10991 |
|
| Days since last comment |
|
|
2 |
| Comment body |
|
Could someone review this issue? Thank you. |
|
| Last commenter |
|
|
557068:145e0983-5707-439c-80e4-1160dd57g114 |
| Comment created |
|
2019-03-05T04:30:41.229-1100 |
Components
| Field name | JWT field code | Jira expression field code | Example input | Example output |
|---|---|---|---|---|
| Component/s ID |
|
|
10000, 10001 |
10010,10020,10030 |
| Component/s |
|
|
Web Site,Authenticator,Statistics |
|
| Component/s leads |
|
557068:145e0983-5707-439c-80e4-1160dd57g114,777068:145e0983-5707-439c-80e4-1160dd57x554,765428:168p0983-5987-444e-80e4-1160dd57g114 |
Date and time
| Field name | JWT field code | Jira expression field code | Example input | Example output |
|---|---|---|---|---|
| Date and time of creation |
|
|
2019-04-01T14:19:07.060+0200 |
|
| Date and time of last update |
|
|
2019-04-01T14:19:07.060+0200 |
|
| Due date |
|
|
2019-10-22 |
2019-10-22 |
| Original estimate |
|
|
3h 30m |
|
| Date Picker |
|
|
2020-04-22 |
2020-04-22 |
| Remaining estimate |
|
|
2h 45m |
|
| Date and time of resolution |
|
|
2019-04-01T14:19:07.060+0200 |
|
| Date Time Picker |
|
|
2020-04-23T14:26:00.000+0100 |
2020-04-23T14:26:00.000+0100 |
| Days since last comment |
|
|
2 |
|
| Total time |
|
|
90 |
|
| Remaining estimate (minutes) |
|
|
60 |
165 |
| Resolution date |
|
|
2019-12-04T09:30:46.279+0100 |
|
| Original estimate (minutes) |
|
|
60 |
210 |
| Current date and time |
|
|
2019-04-01T14:19:07.060+0200 |
|
| Date and time of latest status change |
|
2019-04-01T14:19:07.060+0200 |
Issue-related
| Field name | JWT field code | Jira expression field code | Example input | Example output |
|---|---|---|---|---|
| Project Picker (single project) |
|
|
10045 |
PRJ |
| Component/s ID |
|
|
10000, 10001 |
10010,10020,10030 |
| Date and time of creation |
|
|
2019-04-01T14:19:07.060+0200 |
|
| Project ID |
|
|
10200 |
10100 |
| Issue link outward issue |
|
PRJ-77 |
||
| Resolution |
|
|
Won't fix |
|
| Creator |
|
|
765428:168p0983-5987-444e-80e4-1160dd57g114 |
|
| Issue status ID |
|
|
10100 |
|
| Issue key |
|
|
CRM-25 |
|
| Resolution ID |
|
|
10200 |
10000 |
| Domain of reporter |
|
|
||
| Participants of an issue |
|
|
557068:145e0983-5707-439c-80e4-1160dd57g114,777068:145e0983-5707-439c-80e4-1160dd57x554 |
|
| Checkboxes |
|
|
10003,10004 |
Checkbox 1,Checkbox 2 |
| Assets object/s |
|
|
SVC-1, SVC-23 |
SVC-1, SVC-23 |
| Assets object/s ID |
|
|
|
a77bd055-dc1e-42ae-ae92-6faf95345f3b:1, b37bd055-dc1e-42ae-ae92-6faf95345f3b:1 |
| Parent |
|
|
CRM-14 |
CRM-6 |
| Last public comment date |
|
|
Thu Feb 13 10:34:55 UTC 2020 |
|
| Project Picker (single project) - Name |
|
|
|
Development Project |
| Date and time of last update |
|
|
2019-04-01T14:19:07.060+0200 |
|
| Project category |
|
|
Development |
|
| Select List (single choice) |
|
|
10054 |
Option 2 |
| Issue link inward issue |
|
PRJ-5 |
||
| Reporter's email |
|
|||
| Last commented by a User Flag |
|
|
|
|
| Issue link type outward |
|
duplicates |
||
| Last comment |
|
|
Take your Jira to the next level by using JWT for Jira Cloud |
|
| Domain of Assignee |
|
|
||
| Issue status |
|
|
Open |
|
| Creator's email |
|
user@example.com |
||
| Organization/s |
|
|
|
Atlassian, Decadis |
| Due date |
|
|
2019-10-22 |
2019-10-22 |
| Original estimate |
|
|
3h 30m |
|
| Date Picker |
|
|
2020-04-22 |
2020-04-22 |
| Available transitions |
|
Start Progress,Resolve Issue,Close Issue |
||
| Remaining estimate |
|
|
2h 45m |
|
| Environment |
|
|
Take your Jira to the next level by using JWT for Jira Cloud |
Cloud |
| Number of affects version/s |
|
|
3 |
|
| Attachments |
|
|
file1.txt,readme.pdf,screenshot.png |
|
| Number Field |
|
|
12.12 |
2.7181 |
| Temporary text |
This is a text stored temporarily |
This is a text stored temporarily |
||
| Temporary number |
10 |
10 |
||
| Project description |
|
Take your Jira to the next level by using JWT for Jira Cloud |
||
| Labels (Custom field) |
|
|
web, customer, java, mobile |
web,customer,java,mobile |
| Number of labels |
|
|
4 |
|
| Version Picker (single version) |
|
|
10010 |
Version 1.2 |
| Available target statuses |
|
In Progress,Resolved,Closed |
||
| Number of votes received |
|
|
5 |
|
| Issue link linked issue |
|
PRJ-5 |
||
| Number of comments |
|
|
7 |
|
| Date and time of resolution |
|
|
2019-04-01T14:19:07.060+0200 |
|
| Issue link type inward |
|
is duplicated by |
||
| Number of sub-tasks |
|
|
3 |
|
| Date Time Picker |
|
|
2020-04-23T14:26:00.000+0100 |
2020-04-23T14:26:00.000+0100 |
| Previous issue status |
|
Closed |
||
| URL Field |
|
|
||
| Assets object/s name |
|
|
|
iPhone13, iPhone 16 |
| Group Picker (multiple groups) |
|
|
admin, jira-developers |
admin,jira-developers |
| Component/s |
|
|
Web Site,Authenticator,Statistics |
|
| Days since last comment |
|
|
2 |
|
| Request participant/s full name |
|
|
|
John Doe, Max Mustermann |
| Watchers |
|
|
557068:145e0983-5707-439c-80e4-1160dd57g114,777068:145e0983-5707-439c-80e4-1160dd57x554 |
|
| Security level ID |
|
|
10010 |
10001 |
| Fix version/s ID |
|
|
10007, 10000 |
10010,10020,10030 |
| User Picker (multiple users) |
|
|
557068:145e0983-5707-439c-80e4-1160dd57g114,777068:145e0983-5707-439c-80e4-1160dd57x554 |
557068:145e0983-5707-439c-80e4-1160dd57g114,777068:145e0983-5707-439c-80e4-1160dd57x554 |
| Total time |
|
|
90 |
|
| Organization/s ID |
|
|
45, 23 |
45, 23 |
| Number of attachments |
|
|
3 |
|
| Project |
|
|
HR |
|
| Issue type |
|
|
10003 |
Improvement |
| Remaining estimate (minutes) |
|
|
60 |
165 |
| Assignee's full name |
|
|
Bob Smith |
|
| Description |
|
|
Take your Jira to the next level by using JWT for Jira Cloud |
Take your Jira to the next level by using JWT for Jira Cloud |
| Number of fix version/s |
|
|
5 |
|
| Issue ID |
|
|
10001 |
|
| Issue status category |
|
|
Done |
|
| Project name |
|
|
Customer Relationship Management |
|
| Team |
|
|
|
Development |
| Reporter |
|
|
60 |
165 |
| Group Picker (multiple groups) ID |
|
|
b23a6c98-ad4f-4b31-973d-adc056c49190, 02d209f7-ddbb-4362-a22b-38a503bddca0 |
b23a6c98-ad4f-4b31-973d-adc056c49190,02d209f7-ddbb-4362-a22b-38a503bddca0 |
| Project key |
|
|
HR |
|
| Issue link direction |
|
inward |
||
| Keys of sub-tasks |
|
|
CRM-23,CRM-26,CRM-31 |
|
| Select list (cascading) |
|
|
10034,10555 |
Parent,child |
| Summary |
|
|
Take your Jira to the next level by using JWT for Jira Cloud |
Take your Jira to the next level by using JWT for Jira Cloud |
| Request Type |
|
|
|
Get IT help |
| Group Picker (single group) ID |
|
|
Admin |
Administration |
| Keys of linked issues |
|
|
CRM-13,HR-25,SD-12 |
|
| Number of linked issues |
|
|
3 |
|
| Text field (multi-line) |
|
|
A text with a couple of lines. |
A text with a couple of lines. |
| Security level |
|
|
Classified |
|
| Issue type ID |
|
|
10052 |
10056 |
| Project lead's full name |
|
Robert Smith |
||
| Original estimate (minutes) |
|
|
60 |
210 |
| Priority ID |
|
|
10004 |
10010 |
| Affects version/s |
|
|
Version 1.0,Version 1.2 |
|
| Project lead's email |
|
user@example.com |
||
| Group Picker (single group) |
|
|
Admin |
Administration |
| Last commenter |
|
|
557068:145e0983-5707-439c-80e4-1160dd57g114 |
|
| Issue link type ID |
|
10002 |
||
| Radio Buttons |
|
|
10012 |
Radio 1 |
| Reporter's full name |
|
|
Robert Smith |
|
| Date and time of latest status change |
|
2019-04-01T14:19:07.060+0200 |
||
| Request participant/s |
|
|
633c010dfedc6169def920f6, 712020:bcader66-30c7-475a-8552-7fa86716126c |
633c010dfedc6169def920f6, 712020:bcader66-30c7-475a-8552-7fa86716126c |
| Project URL |
|
|||
| Labels |
|
|
web, customer, java, mobile |
web,customer,java,mobile |
| Version Picker (multiple versions) |
|
|
Version 1.0,Version 1.2 |
Version 1.0,Version 1.2 |
| Team ID |
|
|
9bef0763-88f1-49df-h76f-2a7fedcf349c |
9bef0763-88f1-49df-h76f-2a7fedcf349c |
| Priority |
|
|
Critical |
|
| Issue link ID |
|
10045 |
||
| Creator's full name |
|
|
Bob Smith |
|
| Assignee's email |
|
|||
| Issue type description |
|
A task that needs to be done. |
||
| Text field (single line) |
|
|
One-liner |
This is only one line. |
| Issue link type name |
|
Duplicates |
||
| Project lead |
|
557068:145e0983-5707-439c-80e4-1160dd57g114 |
||
| Select List (multiple choices) |
|
|
10054, 10056 |
Option1,Option3 |
| Component/s leads |
|
557068:145e0983-5707-439c-80e4-1160dd57g114,777068:145e0983-5707-439c-80e4-1160dd57x554,765428:168p0983-5987-444e-80e4-1160dd57g114 |
||
| Username of last updater or commenter |
|
|
777068:145e0983-5707-439c-80e4-1160dd57x554 |
|
| Fix version/s |
|
|
1.0,2.0,2.1 |
|
| User Picker (single user) |
|
|
557068:145e0983-5707-439c-80e4-1160dd57g114 |
557068:145e0983-5707-439c-80e4-1160dd57g114 |
| Assignee |
|
|
557068:145e0983-5707-439c-80e4-1160dd57g114 |
557068:145e0983-5707-439c-80e4-1160dd57g114 |
| Affects version/s ID |
|
|
10054, 10056 |
10010,10020,10030 |
| Request Type ID |
|
|
34 |
34 |
Jira Service Management
If Jira Service Management is licensed for the current user, the following fields will also be available.
| Field name | JWT field code | Jira expression field code | Example input | Example output |
|---|---|---|---|---|
| Assets object/s |
|
|
SVC-1, SVC-23 |
SVC-1, SVC-23 |
| Assets object/s ID |
|
|
|
a77bd055-dc1e-42ae-ae92-6faf95345f3b:1, b37bd055-dc1e-42ae-ae92-6faf95345f3b:1 |
| Organization/s |
|
|
|
Atlassian, Decadis |
| Assets object/s name |
|
|
|
iPhone13, iPhone 16 |
| Request participant/s full name |
|
|
|
John Doe, Max Mustermann |
| Organization/s ID |
|
|
45, 23 |
45, 23 |
| Request Type |
|
|
|
Get IT help |
| Request participant/s |
|
|
633c010dfedc6169def920f6, 712020:bcader66-30c7-475a-8552-7fa86716126c |
633c010dfedc6169def920f6, 712020:bcader66-30c7-475a-8552-7fa86716126c |
| Request Type ID |
|
|
34 |
34 |
Jira Software
Epics (issues that have issue.isEpic equal to true or returned by issue.epic ) have additional, epic-specific fields. These fields are nullfor regular issues.
| Field name | JWT field code | Jira expression field code | Example input | Example output |
|---|---|---|---|---|
| Epic name |
|
|
This is my Epic's name |
This is my Epic's name |
| Flagged |
|
|
||
| Sprint ID |
|
|
4 |
|
| Epic link |
|
|
PRJ-2 |
PRJ-2 |
| Epic Status |
|
|
To Do |
|
| Sprint endDate |
|
2021-06-10T04:08:00.000-1100 |
||
| Sprint startDate |
|
2021-05-27T04:08:00.000-1100 |
||
| Sprint goal |
|
Finish MVP |
||
| Closed sprints |
|
Start, MVP |
||
| Epic color |
|
|
ghx-label-10 |
|
| Sprint |
|
|
2 |
First sprint |
| Sprint completeDate |
|
2021-08-10T15:08:00.000Z |
||
| Epic done |
|
|
||
| Story point estimate |
|
|
34 |
40 |
| Stories |
|
PU-3,PU-25,PU-7 |
||
| Is Epic |
|
true |
||
| Rank |
|
|
0|i0016n: |
|
| Sprint state |
|
active |
Numbers
| Field name | JWT field code | Jira expression field code | Example input | Example output |
|---|---|---|---|---|
| Number of affects version/s |
|
|
3 |
|
| Number Field |
|
|
12.12 |
2.7181 |
| Number of labels |
|
|
4 |
|
| Number of votes received |
|
|
5 |
|
| Number of comments |
|
|
7 |
|
| Number of sub-tasks |
|
|
3 |
|
| Number of attachments |
|
|
3 |
|
| Number of fix version/s |
|
|
5 |
|
| Number of linked issues |
|
|
3 |
Priority
| Field name | JWT field code | Jira expression field code | Example input | Example output |
|---|---|---|---|---|
| Priority description |
|
This is the highest priority |
||
| Priority ID |
|
|
10004 |
10010 |
| Team ID |
|
|
9bef0763-88f1-49df-h76f-2a7fedcf349c |
9bef0763-88f1-49df-h76f-2a7fedcf349c |
| Priority |
|
|
Critical |
Project
| Field name | JWT field code | Jira expression field code | Example input | Example output |
|---|---|---|---|---|
| Project Picker (single project) |
|
|
10045 |
PRJ |
| Project ID |
|
|
10200 |
10100 |
| Project Picker (single project) - Name |
|
|
|
Development Project |
| Project category |
|
|
Development |
|
| Project description |
|
Take your Jira to the next level by using JWT for Jira Cloud |
||
| Project |
|
|
HR |
|
| Project name |
|
|
Customer Relationship Management |
|
| Project key |
|
|
HR |
|
| Project lead's full name |
|
Robert Smith |
||
| Project lead's email |
|
user@example.com |
||
| Project style |
|
classic |
||
| Project type key |
|
software |
||
| Project URL |
|
|||
| Project lead |
|
557068:145e0983-5707-439c-80e4-1160dd57g114 |
Resolution
| Field name | JWT field code | Jira expression field code | Example input | Example output |
|---|---|---|---|---|
| Resolution |
|
|
Won't fix |
|
| Resolution ID |
|
|
10200 |
10000 |
| Assets object/s |
|
|
SVC-1, SVC-23 |
SVC-1, SVC-23 |
| Assets object/s ID |
|
|
|
a77bd055-dc1e-42ae-ae92-6faf95345f3b:1, b37bd055-dc1e-42ae-ae92-6faf95345f3b:1 |
| Organization/s |
|
|
|
Atlassian, Decadis |
| Assets object/s name |
|
|
|
iPhone13, iPhone 16 |
| Request participant/s full name |
|
|
|
John Doe, Max Mustermann |
| Organization/s ID |
|
|
45, 23 |
45, 23 |
| Resolution date |
|
|
2019-12-04T09:30:46.279+0100 |
|
| Team |
|
|
|
Development |
| Request Type |
|
|
|
Get IT help |
| Resolution description |
|
Work has been completed on this issue. |
||
| Request participant/s |
|
|
633c010dfedc6169def920f6, 712020:bcader66-30c7-475a-8552-7fa86716126c |
633c010dfedc6169def920f6, 712020:bcader66-30c7-475a-8552-7fa86716126c |
| Request Type ID |
|
|
34 |
34 |
Security
| Field name | JWT field code | Jira expression field code | Example input | Example output |
|---|---|---|---|---|
| Security level ID |
|
|
10010 |
10001 |
| Security level description |
|
only the reporter has access |
||
| Security level |
|
|
Classified |
Status
| Field name | JWT field code | Jira expression field code | Example input | Example output |
|---|---|---|---|---|
| Issue status ID |
|
|
10100 |
|
| Status category color |
|
grey-blue |
||
| Issue status |
|
|
Open |
|
| Available transitions |
|
Start Progress,Resolve Issue,Close Issue |
||
| Issue status description |
|
This issue is considered Done |
||
| Available target statuses |
|
In Progress,Resolved,Closed |
||
| Previous issue status |
|
Closed |
||
| Issue status category |
|
|
Done |
|
| Status category ID |
|
4 |
||
| Status category key |
|
New |
System
| Field name | JWT field code | Jira expression field code | Example input | Example output |
|---|---|---|---|---|
| Current user's email |
|
|||
| Current user |
|
|
777068:145e0983-5707-439c-80e4-1160dd57x554 |
|
| Current user's full name |
|
|
Bob Smith |
|
| Current date and time |
|
|
2019-04-01T14:19:07.060+0200 |
|
| JIRA base URL |
|
User
| Field name | JWT field code | Jira expression field code | Example input | Example output |
|---|---|---|---|---|
| Creator |
|
|
765428:168p0983-5987-444e-80e4-1160dd57g114 |
|
| Participants of an issue |
|
|
557068:145e0983-5707-439c-80e4-1160dd57g114,777068:145e0983-5707-439c-80e4-1160dd57x554 |
|
| Reporter's email |
|
|||
| Current user's email |
|
|||
| Creator's email |
|
user@example.com |
||
| Current user |
|
|
777068:145e0983-5707-439c-80e4-1160dd57x554 |
|
| Current user's full name |
|
|
Bob Smith |
|
| Group Picker (multiple groups) |
|
|
admin, jira-developers |
admin,jira-developers |
| Watchers |
|
|
557068:145e0983-5707-439c-80e4-1160dd57g114,777068:145e0983-5707-439c-80e4-1160dd57x554 |
|
| User Picker (multiple users) |
|
|
557068:145e0983-5707-439c-80e4-1160dd57g114,777068:145e0983-5707-439c-80e4-1160dd57x554 |
557068:145e0983-5707-439c-80e4-1160dd57g114,777068:145e0983-5707-439c-80e4-1160dd57x554 |
| Assignee's full name |
|
|
Bob Smith |
|
| Reporter |
|
|
60 |
165 |
| Group Picker (multiple groups) ID |
|
|
b23a6c98-ad4f-4b31-973d-adc056c49190, 02d209f7-ddbb-4362-a22b-38a503bddca0 |
b23a6c98-ad4f-4b31-973d-adc056c49190,02d209f7-ddbb-4362-a22b-38a503bddca0 |
| Group Picker (single group) ID |
|
|
Admin |
Administration |
| Group Picker (single group) |
|
|
Admin |
Administration |
| Last commenter |
|
|
557068:145e0983-5707-439c-80e4-1160dd57g114 |
|
| Reporter's full name |
|
|
Robert Smith |
|
| Creator's full name |
|
|
Bob Smith |
|
| Assignee's email |
|
|||
| Username of last updater or commenter |
|
|
777068:145e0983-5707-439c-80e4-1160dd57x554 |
|
| User Picker (single user) |
|
|
557068:145e0983-5707-439c-80e4-1160dd57g114 |
557068:145e0983-5707-439c-80e4-1160dd57g114 |
| Assignee |
|
|
557068:145e0983-5707-439c-80e4-1160dd57g114 |
557068:145e0983-5707-439c-80e4-1160dd57g114 |
Versions
| Field name | JWT field code | Jira expression field code | Example input | Example output |
|---|---|---|---|---|
| Version released |
|
|
||
| Version Picker (single version) |
|
|
10010 |
Version 1.2 |
| Version archived |
|
|
||
| Fix version/s ID |
|
|
10007, 10000 |
10010,10020,10030 |
| Version release date |
|
2020-04-28 |
||
| Affects version/s |
|
|
Version 1.0,Version 1.2 |
|
| Version description |
|
Switching to React Frontend |
||
| Version Picker (multiple versions) |
|
|
Version 1.0,Version 1.2 |
Version 1.0,Version 1.2 |
| Fix version/s |
|
|
1.0,2.0,2.1 |
|
| Affects version/s ID |
|
|
10054, 10056 |
10010,10020,10030 |
Actions
| Field name | JWT field code | Example output |
|---|---|---|
| Action response |
|
|
| Action status |
|
200 |
| Action response details |
|
|