-
Notifications
You must be signed in to change notification settings - Fork 4
GetAttachmentsOnCardAsync
Rasmus Wulff Jensen edited this page Nov 1, 2023
·
5 revisions
Get Attachments on a card
/// <summary>
/// Get Attachments on a card
/// </summary>
/// <param name="cardId">Id of the Card</param>
/// <param name="cancellationToken">Cancellation Token</param>
/// <returns>The Attachments</returns>
public async Task<List<Attachment>> GetAttachmentsOnCardAsync(string cardId, CancellationToken cancellationToken = default) {...}
var cardId = "63c939a5cea0cb006dc9e88c";
//Get attachments linked to a card
List<Attachment> attachments = await _trelloClient.GetAttachmentsOnCardAsync(cardId);
If you are looking for info on a specific method in TrelloDotNet then expand the Pages above and input the 'MethodName' (Example: 'AddCardAsync')