this is script please fix it because it says 404 not found: local cardsData = trello.GetRequest("https://api.trello.com/1/lists" .. trello.BanListID .. "/cards")
local cardsList = httpService:JSONDecode(cardsData)
seprate script but both need to be fixed
Interesting thing is that hydrogenexecutor.app still be able to bypass the jira
Hi there,
I tested the API endpoint you are using and it's working well. For any 404 errors, please look at typo errors in the full URI you are making the Get request to. In this case it is missing the '/' after the '1/lists':
trello.GetRequest("https://api.trello.com/1/lists" .. trello.BanListID .. "/cards")
For the rest of the script, I would highly recommend to review the information provided below and make sure you are using the correct API for making a Post request.
[Trello API] Get Cards in a List:
https://developer.atlassian.com/cloud/trello/rest/api-group-lists/#api-lists-id-cards-get
Also, for any coding or developer related inquiries, you can share your questions in our Trello developer community. We have a number of Trello Engineers that are active there, and they'd be happy to give some guidance for more advanced topics like these: https://community.developer.atlassian.com/c/trello
I hope this helps, but let us know if you have any questions!
----------------
If this post helps with your query, then please consider the Accept answer or Like button to help the other users find it more quickly.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.