SMS SEND TOOL
# support
d
Where will we write the message to be sent to the caller? Example: Booking link
v
To send a message (like a booking link) using the SMS Send Tool in Vapi, you typically specify the message content as a parameter in the tool's payload. For example:
Copy code
json
{
  "type": "sms",
  "metadata": {
    "from": "+15551234567"
  },
  "parameters": {
    "message": "Here is your booking link: https://example.com/booking"
  }
}
Note: The exact parameter name for the message may vary (e.g.,
message
,
body
). Please refer to your tool's configuration or API reference for the precise field name. [See more in the Vapi documentation.](https://docs.vapi.ai/tools/default-tools#send-text) Source: - [Vapi Default Tools Documentation](https://docs.vapi.ai/tools/default-tools#send-text)
a
^^