trello Questions
7
When manually entering a Trello card's description, it's easy to introduce line breaks: just press ENTER. However, I need to introduce line breaks when setting a card's description via the Trello A...
Extravert asked 21/2, 2014 at 15:34
3
I've added webhooks using Trello's API (Node JS package).
How do I get the current webhooks or how do I get an existing webhook ID?
Could'nt find a way through the API:
https://developers.trello.co...
6
Solved
Using Trello API:
I've been able to get all the cards that are assigned to a Trello user
I've been able to get all the boards that are assigned to an Organization
But I can't get any API call tha...
4
I've been trying to work with Trello and the Google Apps Script this week. I am trying to create an array of hashes that I can then use to load the spreadsheet. Google apps script doesn't like the ...
Lepp asked 29/9, 2012 at 7:19
3
I have code to read boards, lists, and cards. I'd like to move cards from one list to another. I just can't seem to figure out Trello's API docs. Can someone provide a sample move card string? I se...
Spinelli asked 17/12, 2013 at 21:21
2
I'm trying to add a new card to a Trello list but am a bit stuck
I've tried POSTing in two approaches:
https://api.trello.com/1/lists/mylistid/cards?key=mykey&token=myToken&name=myName
w...
Mysticism asked 3/9, 2014 at 16:15
2
Solved
The following question was asked on the Trello API board.
I thought I'd add it here.
How can I obtain all archived cards on a board?
4
Solved
is there a way to get all the comments of a card through the Trello API? I can get the card, the list which it is in, the members assigned to it etc. but can't see a way to get the comments.
Thank...
5
Is it possible to setup Trello as an Eclipse Mylyn task repository? Is there any existing connector or some other way to do it?
1
Been attempting to set-up a webhook in Google Sheets Apps Script that will respond when changes are made in Trello. To do this, it's suggested to deploy the script as a web app (requiring doGet and...
Faustino asked 9/8, 2019 at 0:57
1
I'm trying to write some simple Javascript that uses the Trello API to get all boards / lists / cards from my account and add them into an sortable table (using the Datatables jquery plugin).
I've...
Proposition asked 1/6, 2017 at 12:14
1
Solved
I want to get all the actions for a board, but Trello limits the results to 1000. I understand the correct way to deal with this is to paginate. I've tried both before and page as keywords:
Basic ...
Lyophobic asked 9/8, 2018 at 23:33
3
I have a .csv file that I want to import to Trello. How can I go about doing that? Zapier won´t work because there are too many and I would be required to pay, which I´m trying to avoid.
1
Solved
I'm trying to get all cards in a board assigned to a specific user, but the below returns all the cards in a board.
I did not find this solution anywhere; this is what I tried, and it returns card...
3
Solved
I'm already in love with the Custom Fields feature in Trello. Is there a way to get and set custom fields via the API?
I tried using the get field API call to get a field (on a board with a custom...
7
Solved
When logged into trello in a browser you can easily backup a board by hitting a URL like this:
https://trello.com/board/replaceWithMyBoardId/my-board-name.json
I'd like to write a script tha...
Inopportune asked 8/6, 2012 at 16:29
3
I'm trying to demonstrate the Trello API but i'm having issues with the authentication procedure.
var ConnectToTrello = function () {
//console.log("Authenticating");
Trello.authorize({
type: 'po...
Lacilacie asked 23/12, 2015 at 9:5
5
I am trying to use Trello from a Google Spreadsheet (Google Docs) and am not sure how to import/reference/link the javascript files required to use their library. My only other option is usin...
Casilde asked 5/9, 2013 at 21:51
3
Solved
I'm trying to write an app that updates my Trello cards with the API. How do I get a permanent user token for the app to write to my Trello board?
Thanks
Xantho asked 18/6, 2013 at 21:4
5
Solved
I am looping through an array with angular.forEach and calling a non-angular ajax library (Trello client.js). The client does have 'success' and 'error' callbacks, but doesn't return an angular def...
Stopwatch asked 3/4, 2014 at 16:22
2
Solved
I can get data from the Trello API using this:
private function get_card_info($card_id) {
$client = new \GuzzleHttp\Client();
$base = $this->endpoint . $card_id;
$params = "?key=" . $this-&g...
2
Solved
My company has a list of current projects on Trello (private board), and we'd love to display them on our website by connecting to the board so that they're always up-to-date.
Using this example, ...
Desinence asked 8/5, 2016 at 2:40
1
Solved
I have built a site that pulls the comments from Trello to show it on my site using this code:
var resource = "cards/" + card.id + "/actions";
Trello.get(resource, function(comments) {
if(!$.is...
1
I'm trying to compare Trello boards in order to highlight differences. You can easily download a board in JSON format from Trello by replacing the board's name with ".json" in the url:
http://trel...
Northrop asked 13/7, 2015 at 18:2
1
Solved
I am making an app that will have to list of things which can be rearranged.
Trello does it perfectly, it allows us to rearrange everything, from lists to cards and checklists. How does it do it?...
Macropterous asked 22/4, 2015 at 8:16
1 Next >
© 2022 - 2025 — McMap. All rights reserved.