Can’t test Tools
# support
t
Hey peeps, there’s no ability to send sample payload data to my server as it was with functions. Please advise
v
@Tarek Maximus Hello! If you're looking to send sample payload data to your server, you would typically do this through the configuration of your tool. In the case of a "function" type tool, you can specify the payload data within the "function" object of your configuration. Here's a basic structure you can follow:
Copy code
json
{
  "type": "function",
  "messages": [ ... ],
  "function": {
    "your_payload_key": "your_payload_value"
    // ... other payload data
  },
  "async": false,
  "server": {
    // ... server configuration
  }
}
Replace
"your_payload_key": "your_payload_value"
with the actual keys and values you want to send as sample data. Make sure that the payload structure matches what your server expects to receive. If you need more specific guidance on how to configure your tool to send data to your server, please provide more details about what you're trying to achieve, and I'll be happy to help further!
You can continue this conversation by mentioning me in the message.
Got it. Tagging @User for additional help.
s
@Tarek Maximus you have to do manual testing as of now.
t
Yeah sorry didn’t update, I ran scenario and called assigned number. It works. No issues. Thanks
2 Views