Skip to main content
Question

inputFields.itemId is the same as inputFields.boardId for one workflow action

  • February 7, 2026
  • 3 replies
  • 32 views

dvdsmpsn
Forum|alt.badge.img+1


For workflow actions triggered on boardId = 18397494666 & itemId = 11214110651, I'm seeing the itemId is wrongly giving an input of the boardId.

Here’s the setup screen (with the values of body.payload.inputFields on the right):
 

 

Here’s the setup for the Item:

 

Why might this be?

const { inputFields } = body.payload;
console.log(inputFields);

Gives:

{
"boardId": "18397494666",
"itemId": "18397494666",
...
}

 

--- 

 

As this looks most likely to be a bug on monday’s end, here’s some metadata for one such automation run:

{
"actionUuid": "4e1f182bca59b6ca14776aa06df008f9",
"triggerUuid": "31e4712253b824058d35d985ebf69429",
"region": "use1",
"recipeId": 3975525,
"integrationId": 529923319
}

 

3 replies

dvdsmpsn
Forum|alt.badge.img+1
  • Author
  • Participating Frequently
  • February 7, 2026

Someone pointed me in the right direction:

> have you scrolled to the very bottom? At the very bottom is a section related to mapping inputs in the new automation builder, maybe something is off there?

I configured it wrong here:

 


dvdsmpsn
Forum|alt.badge.img+1
  • Author
  • Participating Frequently
  • February 9, 2026

The trouble with updating the “Field item” at the bottom as suggested, is that while it should solve the problem completely, only the first value you set is remembered.

You basically cannot change anything in the sentence builder part if you initially made a mistake.

This is great if you do a one shot configuration without any human error, but to err is human.

I don’t know what to do now other than a support ticket.


dvdsmpsn
Forum|alt.badge.img+1
  • Author
  • Participating Frequently
  • February 9, 2026

Ticket # 4599157

 

Example payload sent to the action:
 

{
"payload": {
"blockKind": "action",
"credentialsValues": {
...
},
...
"inputFields": {
"boardId": "18397494666",
"itemId": "18397494666",
...
"folderCreationConflictBehaviour": "createNew"
},
"recipeId": 4067457,
"integrationId": 532243076
},
"runtimeMetadata": {
"actionUuid": "c13a3a5c678a3d49134768672e1ecc61",
"triggerUuid": "194302ac0528406e664a84f3104cacd8"
}
}