-
Notifications
You must be signed in to change notification settings - Fork 71
Open
Labels
Description
Hi all
Thanks for this good working but examples are missing. I am trying to add a card with attachment. I did it without any error but no attachment on Trello.
var attachs []*trello.Attachment
attachs = append(attachs,
&trello.Attachment{URL:"https://www.belightsoft.com/products/imagetricks/img/[email protected]", Name:"test"})card := &trello.Card{
Name: "Batur Orkun",
Desc: "Card description",
Attachments: attachs,
}
err = list.AddCard(card, trello.Defaults())