NEW: imdone-atom 2.2.0 Webhooks!

Jesse Piascik
imdone.io
Published in
1 min readApr 7, 2017

Now you can integrate any way you want. Just configure the payloadURL of your imdone.io project’s webhook. The payloadURL will receive an HTTP POST with the following JSON body.

{
"taskNow": {}, // https://github.com/imdone/imdone-core/blob/master/lib/task.js
"taskBefore": {}, // https://github.com/imdone/imdone-core/blob/master/lib/task.js
"delta": {} // https://github.com/benjamine/jsondiffpatch/blob/master/docs/deltas.md
}

You can also update tasks by returning a json response in the following format.

{
text: “The text of the task id:3 +story trello:19”,
list: “DOING”
}

I’ll have a trello webhook coded soon. In the meantime, have a look at the twitter webhook I created on @glitch.

--

--