Hello everyone,
I am writing a python program to move items to other groups. I queried they group IDs and got this response:
[the response contains real values, I just substituted them for xxx and yyy]
{‘data’: {‘boards’: [{‘groups’: [{‘id’: ‘xxx’, ‘title’: ‘xxx’}, {‘id’: ‘yyy’, ‘title’: ‘yyy’}}]}]}, ‘account_id’: xxx}
I restructured the data for my use case, saved the item ID and the group ID and sent a mutation query:
'mutation {move_item_to_group(item_id: ’ + ID + ‘, group_id: " ’ + Group_ID + ’ ") {id}}’
As response I only get “…Error 404…Group not found…error_reason’: ‘store.monday.automation.error.missing_group’”
Does anybody have an idea what I might be missing here?