We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Hello I have and issue with adding new member to board.
I can get board which I want, can use i.e. ->setLabelNames() but can't use setMemberships();
Is this function "that" function what I need to add new member to the board?
I used exactly this code $currentBoard->setMemberships([ 'idMembership' => 'id of member', 'type' => 'normal' ])->save();
$currentBoard->setMemberships([ 'idMembership' => 'id of member', 'type' => 'normal' ])->save();
Please help me :( I really need it to finish my work.
The text was updated successfully, but these errors were encountered:
Oukey, I'm gonna answer myself, hope someone will need to use this and it will be useful.
This is how I did it:
$boards = $client->members()->boards()->all('me');
foreach($boards as $board)
$client->boards()->members()->invite($board['id'], 'email of trello user', 'Full name of the person');
Sorry, something went wrong.
No branches or pull requests
Hello I have and issue with adding new member to board.
I can get board which I want, can use i.e. ->setLabelNames() but can't use setMemberships();
Is this function "that" function what I need to add new member to the board?
I used exactly this code
$currentBoard->setMemberships([ 'idMembership' => 'id of member', 'type' => 'normal' ])->save();
Please help me :( I really need it to finish my work.
The text was updated successfully, but these errors were encountered: