I have my JotForm submissions linked to Monday.com via Integromat. Unfortunately Jotform currently doesn’t have all the integrations I need so I’m trying to see if I can do them via Integromat.
I’ve got it when I received a JotForm submission it creates a new item in a specific board in Monday.com. I want it so when it creates a new item it also updates the comments section for that item with a specific field from JotForm.
Is this possible? any help would be greatly appreciated, I’m new to Integromat. I’ve attached some screenshots of what I’m trying to achieve, hopefully they make sense.
Ahh okay, so I think the reason this isn’t working for you is because the Updates section isn’t a column on your board, but nested within each item.
I think in this case, it might make more sense to utilize another monday.com module, specifically for creating an Update. Let me know if this option works for you!
Thanks for replying. I created a new module in Integromat specifically to create updates and this works great. I however am now struggling with creating sub items via Integromat. Is this currently possible?
Thanks Helen. I tried to do what you had advised but I must be missing something or not putting the right values in the right places. Sorry, could you point me in the right direction again please?
The error I’m getting is:
The operation failed with an error. [404] Group not found [ Error Code: ResourceNotFoundException / Error Details: {“resource_type”:“group”,“group_id”:“1097057672”,“board_id”:1083082448,“error_reason”:“store.monday.automation.error.missing_group”} ]
Hi @Helen - I have been trying to create a subitem within Integromat with no success. I have set the GroupID to that of the parent item and it always comes back with an error “404 Group Not found”. I havent found a way to properly add a subitem properly with this one. Any help is greatly appreciated!
For me I only see a single “subitems” option in the Group ID selection. I set it as Group ID and it does succeed however based on the output, it has a Group ID of ‘topics’?
Also, the subitem is not created. If I do a list Item check in Integromat, I can see all my created subitems, but they appear nowhere within Monday? Very strange…
In any case, you can also use the HTTP module instead of the Monday v2 one to send a custom API request to create a Subitem. This might honestly be the better way to go as it’s more precise.
Hey @Helen - likely a dumb question. I was playing around in the API playground and had no issues creating some simple Subitems using the following logic…
mutation {
create_subitem(parent_item_id: 12345678, item_name: “new subitem test”) {
id
board {
id
}
}
}
However when I use the exact same logic in an Integromat HTTP Module I receive a 400 Bad Request error which I suspect is due to formatting. Is there different formatting required within Integromat? I’ve tried it every which way and it looks right to me
Thanks for all your help so far Helen. Sorry to keep coming back with more questions!
I have used the HTTP module to create subitems and it works, however is there a way to create multiple subitems?
@Design not at all! Happy to continue answering them.
Hmm sadly the API call will only create one Subitem at a time, however you can absolutely run the HTTP module multiple times in order to create multiple Subitems.
What’s your use-case? Were you looking to create a list of Subitems based off of an action?