Skip to main content

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’: r{‘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?

The issue no longer persists. The only change made ist a white space added after group_id:, so ‘…group_id:"’ + Group_ID+‘"…’ became ‘…group_id: "’ + Group_ID + ‘"…’


Reply