Created
January 3, 2018 06:45
-
-
Save donjose24/41d523290ccb7eaf83dbdbb18bdba21d to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"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