Skip to content
This repository has been archived by the owner on Aug 7, 2022. It is now read-only.

How to add a new card in specific list #46

Open
ranvirgorai opened this issue Sep 11, 2017 · 2 comments
Open

How to add a new card in specific list #46

ranvirgorai opened this issue Sep 11, 2017 · 2 comments

Comments

@ranvirgorai
Copy link

No description provided.

@askdesigners
Copy link

This isn't a bug, you just need to read the trello api docs. ;)

@dfdeagle47
Copy link

Source in 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);
});

Sign up for free to subscribe to this conversation on GitHub. Already have an account? Sign in.
Labels
None yet
Projects
None yet
Development

No branches or pull requests

3 participants