node-trello
node-trello copied to clipboard
How to add a new card in specific list
This isn't a bug, you just need to read the trello api docs. ;)
var Trello = require("node-trello");
var t = new Trello("<your key>", "<token>");
// URL arguments are passed in as an object.
t.post("1/cards", { idList="<your list id>", /* see Trello docs for other props */ }, function(err, data) {
if (err) throw err;
console.log(data);
});