Google Calander how-to
This is a quick tutorial on how to add an event in Google from JIRA using iHUB.
For further details about the Calander API checkout the link https://developers.google.com/calendar/v3/reference/
Before this guid make sure you have setup the authentication: Google Authentication Setup
Steps
Create a new Action
Enter a name
Select POST as Method
Enter URL to the calander that the events shall be published in.
Select the OAUTH Goolge
Enter a body see example below.
Body section
{
"summary":"{{issue.summary}}",
"end": {
"date": "{{issue.customfield_1234}}"
},
"start": {
"date": "{{issue.customfield_1235}}"
},
"attendees": [
{
"email": "{{issue.customfield_1236}}"
}
]
}