What is the Method to Obtain the Name of a New Member Added to a Trello Card?

This topic was automatically generated from Slack. You can find the original thread here.

How do I get the name of the new member added to a trello card

To get the name of the new member added to a Trello card, you can use the “New Member on Card (Instant)” trigger in a Pipedream workflow. Here’s how: 1. Create a new workflow in Pipedream. 2. Search for the Trello app from the trigger menu. 3. Select the “New Member on Card (Instant)” trigger. 4. Connect your Trello account. 5. Select a Board or pass a string from a previous step. 6. Follow the instructions on the trigger configuration screen. You may need to generate a test event from Trello to get real data to test your workflow. Once the trigger is set up, you can access the new member’s name using steps.trigger.event.member.fullName in a code step or any subsequent action in the workflow.

steps.trigger.event.member is undefined in the response

Is there any other field in that event that can give you the member name?

There’s an array of member Ids, but I have no way of knowing which one was the recently added one

Hm, maybe you have to add a step to query additional metadata on them. Have you checked out Trello’s API docs?

I have not - I was hoping the built in call (attached) would return some sort of information on it.

Hm I see that as well. We’re just returning what Trello is sending in their webhook, but I totally agree that’s not very useful.