Skip to content

Instantly share code, notes, and snippets.

@jmramos02
Created January 3, 2018 06:45
Show Gist options
  • Save jmramos02/41d523290ccb7eaf83dbdbb18bdba21d to your computer and use it in GitHub Desktop.
Save jmramos02/41d523290ccb7eaf83dbdbb18bdba21d to your computer and use it in GitHub Desktop.
{
"targets": {
"slack_target": {
"type": "url_target_v2",
"title": "Slack integration endpoint",
"method": "post",
"content_type": "application/json",
"target_url": "https://5cb08f33.ngrok.io"
}
},
"triggers": {
"slack_trigger": {
"title": "Slack Ticket Trigger",
"any": [
{
"field": "update_type",
"operator": "is",
"value": "Create"
},
{
"field": "update_type",
"operator": "is",
"value": "Change"
}
],
"actions": [{
"field": "notification_target",
"value": ["slack_target", [
["ticket_id", "{{ticket.id}}"]
]]
}]
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment