For some reason, I get a 404 error when I followed the API Instructions!
function TrelloAPI:RemoveList(listid)
local addon = getAddon()
if addon == nil then
error('Invalid Arguments!')
return nil
else
local data = {id=listid}
local EncodedData = HTTPService:JSONEncode(data)
HTTPService:PostAsync("https://api.trello.com/1/lists/"..listid.."/closed"..addon, EncodedData)
end
end