-
-
Notifications
You must be signed in to change notification settings - Fork 4
DeleteAsync
Rasmus Wulff Jensen edited this page Nov 1, 2023
·
4 revisions
Custom Delete Method to be used on unexposed features of the API.
Tip: Use Trello's API reference to see endpoints: https://developer.atlassian.com/cloud/trello/rest
/// <summary>
/// Custom Delete Method to be used on unexposed features of the API.
/// </summary>
/// <param name="urlSuffix">API Suffix (aka anything needed after https://api.trello.com/1/ but before that URI Parameters)</param>
/// <param name="cancellationToken">Cancellation Token</param>
public async Task DeleteAsync(string urlSuffix, CancellationToken cancellationToken = default)/// <summary>
/// Custom Get Method to be used on unexposed features of the API. Please use System.Text.Json.Serialization.JsonPropertyName on your class to match JSON Properties
/// </summary>
/// <typeparam name="T">Object to Return</typeparam>
/// <param name="urlSuffix">API Suffix (aka anything needed after https://api.trello.com/1/ but before that URI Parameters)</param>
/// <param name="cancellationToken">Cancellation Token</param>
/// <param name="parameters">Additional Parameters</param>
/// <returns>The Object specified to be returned</returns>
public async Task<T> GetAsync<T>(string urlSuffix, CancellationToken cancellationToken = default, params QueryParameter[] parameters) {...}var cardId = "63c939a5cea0cb006dc454f33";
//Delete a Card
await TrelloClient.DeleteAsync($"cards/{cardId}");If you are looking for info on a specific method in TrelloDotNet then expand the Pages above and input the 'MethodName' (Example: 'AddCardAsync')