Hello Team,
I’m using a Call Bot signal in my view which is configured with a listener bot. Inside the listener bot, I’m using runIntegrationAction to call an external integration and fetch data. The bot is returning a response successfully, and I can see the following structure in the Network tab (screenshot attached):
json
Copy
Edit
{
“params”: {
“result”: “01984be0-e0b0-7729-85fb-eb034c00817d”
},
“success”: true
}
Now, I need to use the params.result value from this bot response to dynamically update a wire field, and then pass this value as a parameter (e.g., record_id) into a Route Assignment or navigation flow.
Could you please guide me on:
How to extract params.result from the bot response and bind it to a wire field.
How to ensure that this wire field value is passed as a dynamic parameter in the next screen’s route.
The goal is to enable navigation like /expected?record_id=01984be0-e0b0-7729-85fb-eb034c00817d.

