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
I got stuck when I try to update a item column value (provider_name) that it s linked to another board (providers “table").
This is my example code:
main_board = moncli.client.get_board_by_id(1234567890) providers_board = moncli.client.get_board_by_id(9876543210) provider = providers_board.get_items_by_multiple_column_values(column='name', column_values=['John Doe'])[0] item = main_board.get_items_by_multiple_column_values(column='name', column_values=['2131361'])[0] item.change_column_value(id='provider_name',column_value=[provider])
When I run it I got this error:
`UnboundLocalError: local variable 'column_id' referenced before assignment`
I red your wiki and searches in internet without success. Do you have an example code to update a linked column value of an linked item?
I will really appreciate your help
The text was updated successfully, but these errors were encountered:
No branches or pull requests
I got stuck when I try to update a item column value (provider_name) that it s linked to another board (providers “table").
This is my example code:
When I run it I got this error:
I red your wiki and searches in internet without success.
Do you have an example code to update a linked column value of an linked item?
I will really appreciate your help
The text was updated successfully, but these errors were encountered: