So I know how to make cards, labels, and such with the API, but how do I archive them from ingame?
Here's how to post a card:
local Url = "https://api.trello.com/1/cards/"..AccountAccess local data = { name = Name, desc = Desc, idList = List, pos = "bottom", } local Data = Http:JSONEncode(data) local Post = Http:PostAsync(Url,Data) local Read = Http:JSONDecode(Post)
How would I edit it to acrhive, if possible?
You can not archive a card without PutAsync() which ROBLOX does not support.