I have built APIs for our POS software to track our daily flower delivering orders. So, I need help from Trello to integrate APIs and if it is possible to edit your code or is there any way to integrate API and create automatic flow?
Trello has their REST API that can do almost everything the Trello Client can do: https://developer.atlassian.com/cloud/trello/rest/
It is free to use the API, you just need an API key and a token representing a user you work as. This video show you how to to get these: https://youtu.be/ndLSAD3StH8
You can use the rest API to create/update/delete things in Trello and/or listen to event from them using Webhooks
You did not mention your programming languagebut if you are using C# for your code I've made a handy Nuget package to do it all that you can get here: https://www.nuget.org/packages/TrelloDotNet
If you are using other languages like php, js, python, or other try searching their respective package sources... Or use the API directly with http calls (it is a rather simple api to use so you will soon get the hang of it)
Happy coding 😎
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.