{{ticket.description}}
https://github.com/valentinalexeev/freshdesk2asana
Submit tasks to Asana from Freshdesk
https://github.com/valentinalexeev/freshdesk2asana
Last synced: 16 days ago
JSON representation
Submit tasks to Asana from Freshdesk
- Host: GitHub
- URL: https://github.com/valentinalexeev/freshdesk2asana
- Owner: valentinalexeev
- Created: 2015-06-12T10:14:06.000Z (about 10 years ago)
- Default Branch: master
- Last Pushed: 2015-06-12T10:39:54.000Z (about 10 years ago)
- Last Synced: 2025-02-23T02:44:29.490Z (4 months ago)
- Language: JavaScript
- Homepage:
- Size: 113 KB
- Stars: 0
- Watchers: 4
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
freshdesk2asana
===============Create new FreshPlug with the following code:
var asanaClient = Asana.Client.create().useBasicAuth(<YOUR_ASANA_API_KEY>);
jQuery("input#a2l_submit").click(function() {
a2l_createTask(
"<YOUR ASANA WORKSPACE NAME>",
"<YOUR ASANA PROJECT NAME>",
"Freshdesk: {{ticket.subject}}", // task title
jQuery("div#a2l_td").text(), // task main text
["<tag>", "<tag1>"], // set tags to these
["{{ticket.url}}"] // add as many comments
);
});