Having a challenge using a workflow to append a dataset every time a comment is made on Jira incidents.
Workflow has 3 steps:
- Start
- Append To Dataset (feeding to a Domo Webform)
- End
Trigger is an AIP Trigger setup in Jira - Success
Payload from the Jira Rule:
{
"issueKey": "{{issue.key}}",
"comment": {
"body": "{{comment.body}}",
"author": "{{comment.author.displayName}}",
"created": "{{comment.created}}"
},
"summary": "{{issue.summary}}",
"project": "{{issue.project.key}}"
}
Challenge:
- Setting up the append,
- Input dataset is set to my domowebform
- Delimiter is set ot a ","
- Values - THIS IS A STRUGGLE
- should it be from the payload?, are they column names?, are they in {{}} or plain?
- Accessing the Payload. Where do I access it? Do I need a variable? How do i write to the variable if it is driven by the AIP?
Images of dataset and current config attached.