Questions tagged [trello]

Trello is a collaboration tool that organizes your projects into boards. In one glance, Trello tells you what's being worked on, who's working on what, and where something is in a process.

586 questions
0
votes
1 answer

Print a solid colored square with Ruby

I'm working on modifying Brett Weaver's Trello CLI ruby-based utility to include information from a Trello card object, namely the label colors associated with that card. Right now, I can do something like the following to iterate through the…
mbeasley
  • 4,864
  • 5
  • 27
  • 39
0
votes
1 answer

How do I traverse nested arrays/objects in JSON data?

I'm trying to display multiple checklists from individual cards in Trello. I can get access to the checklist as multiple, nested objects but I don't know how to traverse deeper to pull out the actual text and make it list items. …
EmptyPockets
  • 727
  • 1
  • 7
  • 23
0
votes
2 answers

How do I use $.each to display multiple nested elements from the same JSON object?

I'm using the Trello API to create a dashboard of user stories and checklist items for a client. Here's the relevant code: Trello.get("boards/z6yBuVol/cards", function(cards) { $cards.empty(); $.each(cards, function(ix, card) { …
EmptyPockets
  • 727
  • 1
  • 7
  • 23
0
votes
2 answers

How do I pass a string to a function requiring an Object?

I am using Chello (the c# wrapper for the Trello API). I need to pass the argument "createCard" as per the documentation here: https://trello.com/docs/api/card/index.html And this is the function I am using from Chello: public…
Ben
  • 4,281
  • 8
  • 62
  • 103
0
votes
2 answers

trello api "PUT /1/cards/[card id]/desc" returns a 400 response with message "invalid value for value"

I've spend a week trying to work out how to update some card information, I'd hoped to update a load of fields at one, e.g. name, desc, idList, closed etc, but after looking around it seems they have to be done individually, but when I try I keep…
user2790622
  • 11
  • 1
  • 5
0
votes
1 answer

Trello API: vote on a card

Is it possible to vote on a public card with Trello's REST API? The documentation is not very helpful: https://trello.com/docs/api/card/index.html https://trello.com/docs/api/action/index.html Thanks!
johannesboyne
  • 206
  • 2
  • 9
0
votes
2 answers

Creating & Referencing PHP Variables from foreach to compare

Live page can be seen here I'm aiming to apply a specific class to each list item in the second UL based upon the list it appears on. The second json call returns an ID that matches the ID and name pair which can be found in the first list. I'd like…
Bryce York
  • 956
  • 1
  • 15
  • 35
0
votes
2 answers

Trello API PHP Curl

I am trying to integrate/replace my web edit queue into Trello. I made an organization which is not public but have created a token for read/write access. I haven't seen a good PHP wrapper for the Trello API (have looked at the two available and…
mmundiff
  • 3,875
  • 7
  • 32
  • 46
0
votes
2 answers

Invite members to board with Trello.NET

Is there a way to invite members to a board or even just assign them as admins/users via the API? I'm trying to automate our project request system so that when a new project is approved a new Trello board is created and my team is assigned as…
wholol
  • 918
  • 2
  • 9
  • 22
0
votes
1 answer

Trello API: the updateCard:idList filter doesn't return any cards

Using the Trello API, "filter=updateCard:idList" doesn't seem to work? If I leave the ":idList" off, it returns my cards. Any ideas?
Stirman
  • 1,574
  • 3
  • 11
  • 12
0
votes
1 answer

What is an "addedToBoard" notification in Trello API?

Trello API indicates there is a type of notification called "addedToBoard". Does any one knows how to trigger this notification? I tried adding a member to an existing private and public board but it always triggers an "invitedToBoard"…
-1
votes
1 answer

Add multiple labels to a card using the Trello API

How do you add multiple labels to a single card with a single HTTPRequest using the Trello API? I have the following code: StringBuilder uri = new StringBuilder(); uri.append(TRELLO_URL +…
-1
votes
1 answer

how can i add a checklist to all cards and boards in trello?

I would like that when adding a checklist to a card in trello, that checklist would be added to all cards. Example : https://i.stack.imgur.com/PiCF9.png it's in the beggining , and the I added a checklist called "teste" https://prnt.sc/i9jGTQ3EePJ_…
-1
votes
1 answer

Trello Rest API Create Card returns 401 Unauthorized - but only via Code

I'm currently trying to implement a Trello integration into Unity using the Trello Rest API. I am able to display the a given board with it's lists and cards. No problem so far. But as soon as I try to create or update a card, I get an unauthorized…
-1
votes
1 answer

Check if board, list, or card exists in trello

Is there a way to check if a board, list, or card exists in Trello? Would like to create a python script that will display the list of the mentioned components if the name already exists. I checked the API it seems there is no query function. Hoping…
Jamojo
  • 41
  • 4