I am trying to use Trello API to just move a card to a different list, and keep the title and description the same, and am not entirely sure how I would go about it, since they are required parameters in the function. Is there a way you can ignore parameters and keep them the same?
function unban(listname, username)
local list = API:GetListID(listname, BoardID)
local card = API:GetCardID(username, BoardID)
API:EditCard(card, --card title, card description)
end
I have tried setting them to nil values, but it cannot concatenate the string with a nil value when making the URL.