> ## 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.

# Make Outbound Call

Make an outbound phone call.

<Note>
  External Documentation

  To learn more, visit the [Twilio documentation](https://www.twilio.com/docs/voice/api/call-resource#create-a-call-resource).
</Note>

## Parameters

<div className="integrations-table">
  | Parameter | Description                                                                                                                                                                                                                                                                                                                                                         |
  | --------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
  | From      | The phone number to call from. <br />The Twilio phone number belonging to the account sending the request.<br /><br />This phone number has to be a `voice-enabled` phone number. For more information, follow the [Twilio Documentation](https://www.twilio.com/docs/voice/api/call-resource#create-a-call-resource#purchase-a-voice-enabled-twilio-phone-number). |
  | To        | The phone number to call.                                                                                                                                                                                                                                                                                                                                           |
  | Twiml     | Instructions in the form TwiML that explains what should happen when the other party picks up the phone.                                                                                                                                                                                                                                                            |
</div>

## Example Output

```json theme={"dark"}
{
	"account_sid": "ACXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX",
	"answered_by": null,
	"api_version": "2010-04-01",
	"caller_name": null,
	"date_created": "Tue, 31 Aug 2010 20:36:28 +0000",
	"date_updated": "Tue, 31 Aug 2010 20:36:44 +0000",
	"direction": "inbound",
	"duration": "15",
	"end_time": "Tue, 31 Aug 2010 20:36:44 +0000",
	"forwarded_from": "+141586753093",
	"from": "+15017122661",
	"from_formatted": "(501) 712-2661",
	"group_sid": null,
	"parent_call_sid": null,
	"phone_number_sid": "PNXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX",
	"price": "-0.03000",
	"price_unit": "USD",
	"sid": "CAXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX",
	"start_time": "Tue, 31 Aug 2010 20:36:29 +0000",
	"status": "completed",
	"subresource_uris": {
		"notifications": "/2010-04-01/Accounts/ACXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX/Calls/CAXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX/Notifications.json",
		"recordings": "/2010-04-01/Accounts/ACXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX/Calls/CAXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX/Recordings.json",
		"feedback": "/2010-04-01/Accounts/ACXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX/Calls/CAXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX/Feedback.json",
		"feedback_summaries": "/2010-04-01/Accounts/ACXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX/Calls/FeedbackSummary.json",
		"payments": "/2010-04-01/Accounts/ACXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX/Calls/CAXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX/Payments.json",
		"events": "/2010-04-01/Accounts/ACXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX/Calls/CAXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX/Events.json",
		"siprec": "/2010-04-01/Accounts/ACXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX/Calls/CAXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX/Siprec.json",
		"streams": "/2010-04-01/Accounts/ACXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX/Calls/CAXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX/Streams.json",
		"user_defined_message_subscriptions": "/2010-04-01/Accounts/ACXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX/Calls/CAXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX/UserDefinedMessageSubscriptions.json",
		"user_defined_messages": "/2010-04-01/Accounts/ACXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX/Calls/CAXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX/UserDefinedMessages.json"
	},
	"to": "+14155551212",
	"to_formatted": "(415) 555-1212",
	"trunk_sid": null,
	"uri": "/2010-04-01/Accounts/ACXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX/Calls/CAXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX.json",
	"queue_time": "1000"
}
```

## Workflow Library Example

[Make Outbound Call with Twilio and Send Results Via Email](https://library.blinkops.com/workflows/make-outbound-call-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/make-outbound-call-with-twilio-and-send-results-via-email/canvas" />
</div>
