trello_remove_member_from_card
Remove a member from a Trello card to manage card assignments and streamline workflow. Specify the card and member IDs to revoke access.
Instructions
Remove a member from a Trello card.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| apiKey | No | Trello API key (optional if TRELLO_API_KEY env var is set) | |
| token | No | Trello API token (optional if TRELLO_TOKEN env var is set) | |
| cardId | Yes | ID or URL of the card | |
| memberId | Yes | ID of the member to remove from the card |
Implementation Reference
- src/trello/client.ts:784-790 (helper)TrelloClient method that makes a DELETE request to /cards/{cardId}/idMembers/{memberId} to remove a member from a card.
async removeMemberFromCard(cardId: string, memberId: string): Promise<TrelloApiResponse<void>> { return this.makeRequest<void>( `/cards/${cardId}/idMembers/${memberId}`, { method: 'DELETE' }, `Remove member ${memberId} from card ${cardId}` ); }