> ## Documentation Index
> Fetch the complete documentation index at: https://docs.blinkops.com/llms.txt
> Use this file to discover all available pages before exploring further.

# Send SMS Message

Send an SMS message to a given phone number.

<Note>
  External Documentation

  To learn more, visit the [Twilio documentation](https://www.twilio.com/docs/messaging/api/message-resource#send-an-sms-message).
</Note>

## Parameters

<div className="integrations-table">
  | Parameter | Description                                                                                                    |
  | --------- | -------------------------------------------------------------------------------------------------------------- |
  | Body      | The contents of your SMS message.                                                                              |
  | From      | The phone number to send a message from. The Twilio phone number belonging to the account sending the request. |
  | To        | The phone number to send a message to.                                                                         |
</div>

## Example Output

```json theme={"dark"}
{
	"account_sid": "ACXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX",
	"api_version": "2010-04-01",
	"body": "Hi there",
	"date_created": "Thu, 24 Aug 2023 05:01:45 +0000",
	"date_sent": "Thu, 24 Aug 2023 05:01:45 +0000",
	"date_updated": "Thu, 24 Aug 2023 05:01:45 +0000",
	"direction": "outbound-api",
	"error_code": null,
	"error_message": null,
	"from": "+15557122661",
	"num_media": "0",
	"num_segments": "1",
	"price": null,
	"price_unit": null,
	"messaging_service_sid": "MGXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX",
	"sid": "SMXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX",
	"status": "queued",
	"subresource_uris": {
		"media": "/2010-04-01/Accounts/ACXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX/Messages/SMXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX/Media.json"
	},
	"to": "+15558675310",
	"uri": "/2010-04-01/Accounts/ACXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX/Messages/SMXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX.json"
}
```

## Workflow Library Example

[Send Sms Message with Twilio and Send Results Via Email](https://library.blinkops.com/workflows/send-sms-message-with-twilio-and-send-results-via-email)

<div className="iframe-wrapper">
  <div className="iframe-media">
    <img src="https://mintcdn.com/blinkops-2/ojHYuDeYX5FWuN8a/img/Icons/play-box.svg?fit=max&auto=format&n=ojHYuDeYX5FWuN8a&q=85&s=b8af968e71438a9499c3223c9bd29fb2" alt="Workflow Library" width="16" height="16" data-path="img/Icons/play-box.svg" />

    Preview this Workflow on desktop
  </div>

  <iframe className="iframe" src="https://library.blinkops.com/workflows/send-sms-message-with-twilio-and-send-results-via-email/canvas" />
</div>
