Hi Easymorph Community,
I am hoping to get some guidance/assistance in regards to API POST requests. The endpoint I am hitting uses GraphQL so I need to create a query when I send the request. I am trying to use the “Iterate Web Request” to go through each record in my table to make updates.
Here is the documentation for the API I am targetting: monday.com GraphQL API
I am having trouble figuring out how to create the query string in my request body. I need to be able to send a query like the below.
The only wait I am currently figuring that I can handle this is using selecting JSON as the body in the action and using a parameter for the value. However, it looks like this limits to using the global project parameters and I can’t pull in a column value there.
Does anyone have any ideas about how I might be able to approach this? Best!
mutation {
create_item (board_id:2128789134 , item_name: “22”) {
id
name
} }