I have an item that is moved from one board to another.
How do you capture the board id of the original board?
In the workflow block, you can get the new board id from the context and item id from trigger output, but I can’t find a way to get the id of the original board.
The POST body currently looks something like this:
{
"payload": {
"blockKind": "action",
"inboundFieldValues": {
"boardId": 2662470531,
"itemId": 2687058843
},
"inputFields": {
"boardId": 2662470531,
"itemId": 2687058843
},
"recipeId": ...,
"integrationId": ...
},
"runtimeMetadata": {
"actionUuid": "...",
"triggerUuid": "..."
}
}
We’re moving the item between board ids:
1642425449 -> 2662470531
How do I get hold of 1642425449
in the POST body?