So the problem is, I cannot get a PUT Request for /cards?closed=true&....
to work. I've even tried using the Trello API Rest API Demo, all it does is spin. Am I going crazy or is it just something else.
👋You're trying to close a card, correct?
Have you tried passing the data you'd like to change in the request's body? Using curl, you'd do the following:
curl -X PUT https://api.trello.com/1/cards/{idCard}?key={apiKey}&token={apiToken} -d '{ "closed": "true" }' -H "Content-Type: application/json"
Online forums and learning are now in one easy-to-use experience.
By continuing, you accept the updated Community Terms of Use and acknowledge the Privacy Policy. Your public name, photo, and achievements may be publicly visible and available in search engines.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.