...
Examples of the web request bodies for Jira automation
Send all the attachments of the issue on a trigger to the issue ITSM-1 on the target instance:
Code Block |
---|
{
"jql": "issuekey = ITSM-1",
"sourceKey": "{{issue.key}}"
} |
Send all the attachments of the issue on a trigger to the issues ITSM-1 and ITSM-20 on the target instance:
Code Block |
---|
{
"jql": "issuekey IN (ITSM-1, ITSM-20)",
"sourceKey": "{{issue.key}}"
} |
...