Scripting Helpers is winding down operations and is now read-only. More info→
Ad
Log in to vote
1

(TRELLO API) Archiving a Card?

Asked by 8 years ago

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?

0
This is a question I've been wondering about myself. I'll be checking back to see if it gets answered. deaththerapy 60 — 8y

1 answer

Log in to vote
0
Answered by
ikiled 75 Donator
8 years ago

You can not archive a card without PutAsync() which ROBLOX does not support.

  • Austin
Ad

Answer this question