Use the callId from webhook payloads rather than browser cookies:
1. **Capture callId from webhook**: Use [req.body.call.id](
http://req.body.call.id) in your tool call webhook
2. **Store session data**: Link booking details to this callId in your database
3. **Bridge to form**: Pass the callId to your form through:
- URL parameters
- Session storage
- Hidden form fields
- Return it in the tool response
This approach is more reliable than depending on browser cookie mechanics and gives you full control over the session management flow.