t
@Vapi
v
@TateN Hello! How can I assist you with VAPI today? If you have any questions or need support with voice development, feel free to ask!
t
what format should a "respond function call" module for VAPI in make.com should be for my agent to be able to interperet the result
v
@TateN When using VAPI with Make.com (formerly Integromat), the "respond function call" module should return data in a format that your agent can easily interpret. Typically, this would be a structured format like JSON, which allows for easy parsing of the data and extraction of the necessary information. Here's an example of a JSON response that an agent might receive from a "respond function call" module:
Copy code
json
{
  "status": "success",
  "data": {
    "message": "The call was successful.",
    "details": {
      "callDuration": "2 minutes",
      "callCost": "0.05",
      "callId": "abc123"
    }
  }
}
In this JSON response: -
status
indicates the outcome of the function call. -
data
contains the relevant information that the agent might need to process. -
message
provides a human-readable summary of the result. -
details
is an object that includes specific data points like
callDuration
,
callCost
, and
callId
. Your agent should be programmed to parse this JSON response and handle the data accordingly. If you need more specific guidance on structuring your "respond function call" module for VAPI in Make.com, please provide additional details about your agent's requirements or ask support for more info on this.
t
i want my agent to give the time slots availability of a http request on make