Questions tagged [manatee.trello]

Manatee Trello is a .Net wrapper for the Trello API.

From project homepage:

Manatee.Trello is a .Net wrapper for Trello’s RESTful API written C#. The goal of this library is to expose the functionality of Trello as a intuitive, fully object-oriented design which implements a Lazy Initialization design pattern; that is, no object is loaded until its details have been requested.

33 questions
4
votes
1 answer

Process Trello webhook response using Manatee.Trello

I have an implementation of webhooks originating from Trello. The JSON response is put into a queue and I'm writing code that will process this queue. I'm using Manatee.Trello to talk with Trello. The webhook response from Trello includes an action…
Joel Lucsy
  • 8,520
  • 1
  • 29
  • 35
3
votes
1 answer

Invalid token when using Manatee.Trello

I've been using Manatee.Trello to scan cards on our Trello boards for reporting purposes. However, this morning the scanning code which has worked for weeks stopped working. It appears to be giving an HttpRequestException: 'invalid token'. Here is…
BruceP
  • 61
  • 6
3
votes
2 answers

Manatee.Trello: Webhook Code Sample

I am looking for a code sample on how to use Manatee.Trello Webhook feature. I found some documentation here: https://bitbucket.org/gregsdennis/manatee.trello/wiki/Webhooks, but it's not clear enough for me. It only demonstrates how to create a…
c0D3l0g1c
  • 3,020
  • 5
  • 33
  • 71
2
votes
1 answer

ManateeSerializer Missing Method

I am beginning the development , and I would like to play with manatee.trello . I try to just follow : https://devhub.io/repos/gregsdennis-Manatee.Trello but I got an issue : System Missing Method exception ! My Project dependencies in Program.cs…
Sophal Sun
  • 21
  • 2
2
votes
1 answer

ManateeSerializer ManateeActionData does not have an implementation

Trello Manatee API 3.0.7 is throwing an error during my initialize method: var serializer = new ManateeSerializer(); TrelloConfiguration.Serializer = serializer; TrelloConfiguration.Deserializer = serializer; TrelloConfiguration.JsonFactory = new…
2
votes
1 answer

how to pass parameter like 'before' and 'limit' in Manatee Trello methods

first of all, thanks to @gregdennis. I use Manatee Trello namespace to query and get Actions from Trello board. there is a limitation to getting entities on each request (50 by default). In Online API documentation I read there are several…
Nader Vaghari
  • 141
  • 10
2
votes
1 answer

Manatee.Trello Moving Cards

I'm writing a small application to manage Trello Boards in only a few aspects such as sorting Cards on a List, moving/copying Cards based on Due Date and/or Labels, archiving Lists on a regular basis and generating reports based on Labels, etc. As…
bubbleking
  • 3,329
  • 3
  • 29
  • 49
2
votes
1 answer

IEnumerable.MoveNext() returns True but IEnumerable.Current raises a System.NullReferenceException

I am building a C# application using the Manatee.Trello package to handle Trello's API. I am currently trying to get the first result returned by the Search function. The Search.Boards element implements the IEnumerable interface. This is…
Aserre
  • 4,916
  • 5
  • 33
  • 56
2
votes
1 answer

Manatee ManateeSerialzier

I'm trying to build an application that used the Manatee nuget package. https://www.nuget.org/packages/Manatee.Trello/ (version 1.11.1) I have the following code inside my controller: var serializer = new…
RunnicFusion
  • 193
  • 1
  • 3
  • 12
2
votes
2 answers

Getting MissingMethodException when using Manatee.trello to get list of users

I have the following code which is intended to fetch a list of all the user of an organisation. public static IEnumerable ListTrelloUsers() { var serializer = new ManateeSerializer(); TrelloConfiguration.Serializer =…
PChristianFrost
  • 120
  • 2
  • 13
2
votes
1 answer

Add existing labels to a new or existing card

I just started using Manatee.Trello but I managed to get most everything I need working including adding new cards and updating existing. I'm attempting to add a label that already exists on Trello to a card using Manatee.Trello. CardID =…
2
votes
2 answers

Manatee Trello List All Organisations

I've been playing with Manatee.Trello and it is soooo awesome. Thank you Gregsdennis. I can list the names of all of my open boards, along with their organisation, like so: Dim myBoards = New Search(SearchFor.IsOpen, 100,…
Casual Bob
  • 87
  • 10
2
votes
1 answer

Just getting started with Manatee.trello and encountering the following error

Exception thrown: 'System.Net.Http.UnsupportedMediaTypeException' in System.Net.Http.Formatting.dll Exception thrown: 'System.AggregateException' in mscorlib.dll Dim serializer As New ManateeSerializer TrelloConfiguration.Serializer =…
DanSiDev
  • 41
  • 5
2
votes
1 answer

Authentication user credentials using trello API

We are having a Trello board having 8 members in it. I am developing an application where I should allow only these 8 members to log in to my application. Is there a way to do this using Trello's API? (I am thinking of authenticating user…
2
votes
1 answer

Trello Manatee adding attachment

I am trying to add an attachment to a pre-created Trello card using Manatee API. This is how I create the card, I have no problems with it: /// /// This function creates a card on Trello board, into the list…
0014
  • 893
  • 4
  • 13
  • 40
1
2 3