Skip to content

GetActionsForMemberAsync

Rasmus Wulff Jensen edited this page May 13, 2023 · 6 revisions

Back to Action Features

Get the most recent Actions (Changelog Events) for a Member (user)

Signature

/// <summary>
/// Get the most recent Actions (Changelog Events) for a Member
/// </summary>
/// <param name="memberId">The Id of the Member</param>
/// <param name="filter">A set of event-types to filter by (You can see a list of event in TrelloDotNet.Model.Webhook.WebhookActionTypes)</param>
/// <param name="limit">How many recent events to get back; Default 50, Max 1000</param>
/// <param name="cancellationToken">Cancellation Token</param>
/// <returns>List of most Recent Trello Actions</returns>
public async Task<List<TrelloAction>> GetActionsForMemberAsync(string memberId, List<string> filter = null, int limit = 50, CancellationToken cancellationToken = default)

Examples

var memberId = "63c939a5cea0cb006dc9e88c";

//Get last 50 actions
List<TrelloAction> last50Actions = await _trelloClient.GetActionsForMemberAsync(memberId);

//Get last 200 actions
List<TrelloAction> last200Actions = await _trelloClient.GetActionsForMemberAsync(memberId, limit: 200);

//Get last 100 actions of type 'addMemberToBoard'
var filter = new List<string>
{
    TrelloDotNet.Model.Webhook.WebhookActionTypes.AddMemberToBoard,
};
List<TrelloAction> last100ActionsOfSpecificTypes = await _trelloClient.GetActionsForMemberAsync(memberId, filter, limit: 100);
Clone this wiki locally