1. Create a new trigger: When value changes -> Every time the due of an issue is edited (or created)
4. Get the field object
Info |
---|
For this example, our End date field from Projectrak has the id: 2870
|
...
7. New Action → Send web request
Info |
---|
For this example, our End date field from Projectrak has the id: 2870
|
- Web request URL: https://profields-cloud.deiser.com/values/projects/{{issue.project.id}}
- Headers:
- Content-Type: application/json
- Authorization: Bearer {{projectrakJwt}} →
Understand how to create a Projectrak authorization in Automation for Jira
- HTTP method: POST
- Web request body: Custom data
- Custom data (
Replace for the Projectrak field ID key and the issue field)
Code Block |
---|
[ { "fieldId": 2870, "value": "{{issue.duedate}}" } ] |
...