Query Parameters in tool call
# support
t
Hi I’m sure this has been answered before but how do you add query parameters to a tool/api call? Eg. https://webhook.site/abc12345-6789-4321-aaaa-bbbbccccdddd?first_name=Jane&last_name=Doe&email=jane.doe%40example.com&issue_type=Support&issue_description=Phone%20call%20dropped%20after%202%20minutes. I swear I saw this in the UI last week and was playing with it in the api but now it has been dead end after dead end. Any advice or an example would be amazing. Thanks in advance
c
Set the method to GET and include placeholders like, first_name={first_name} directly in the server URL for POST requests, use a body schema instead, as query parameters won’t be auto-appended unless manually included in the URL..
t
Thank you so much! That worked
c
Glad the issue was resolved. Please reach out to us if you have any other questions regarding this issue
2 Views