Menu

Expand
Rate this page:

Single Sends

A Single Send is a one-time nonautomated email message delivered to a list or segment of your audience. A Single Send may be sent immediately or scheduled for future delivery.

Single Sends can serve many use cases, including promotional offers, engagement campaigns, newsletters, announcements, legal notices, or policy updates.

The Single Sends API allows you to create, retrieve, update, delete, schedule, and deliver your Single Sends. There are also endpoints for searching and statistics to help you maintain and alter your Single Sends as you learn more and further develop your campaigns.

The Single Sends API changed on May 6, 2020. Please check the SendGrid Knowledge Center for updates and instructions here: https://sendgrid.com/docs/for-developers/sending-email/single-sends-2020-update/

Create Single Send

POST /v3/marketing/singlesends

Base url: https://api.sendgrid.com

This endpoint allows you to create a new Single Send.

Please note that if you are migrating from the previous version of Single Sends, you no longer need to pass a template ID with your request to this endpoint. Instead, you will pass all template data in the email_config object.

This endpoint will create a draft of the Single Send but will not send it or schedule it to be sent. Any send_at property value set with this endpoint will prepopulate the Single Send's send date. However, the Single Send will remain an unscheduled draft until it's updated with the Schedule Single Send endpoint or SendGrid application UI.

Authentication

  • API Key

Headers

Authorization
string
default: Bearer <<YOUR_API_KEY_HERE>>
required

Request Body

object
name
string

The name of the Single Send.

maxLength: 100minLength: 1
required
categories
array[string]

The categories to associate with this Single Send.

maxItems: 10uniqueItems: True
send_at
string or null

Set this property to an ISO 8601 formatted date-time when you would like to send the Single Send. Please note that any send_at property value set with this endpoint will prepopulate the send date in the SendGrid user interface (UI). However, the Single Send will remain an unscheduled draft until it's updated with the Schedule Single Send endpoint or SendGrid application UI. Additionally, the now keyword is a valid send_at value only when using the Schedule Single Send endpoint. Setting this property to now with this endpoint will cause an error.

format: date-time
send_to
object
list_ids
array[string]

The recipient List IDs that will receive the Single Send.

maxItems: 50
segment_ids
array[string]

The recipient Segment IDs that will receive the Single Send.

maxItems: 10
all
boolean

Set to true to send to All Contacts. If set to false, at least one list_ids or segment_ids value must be provided before the Single Send is scheduled to be sent to recipients.

default: False
email_config
object
subject
string

The subject line of the Single Send. Do not include this field when using a design_id.

html_content
string

The HTML content of the Single Send. Do not include this field when using a design_id.

plain_content
string

The plain text content of the Single Send. Do not include this field when using a design_id.

generate_plain_content
boolean

If set to true, plain_content is always generated from html_content. If set to false, plain_content is not altered.

default: True
design_id
string

A design_id can be used in place of html_content, plain_content, and/or subject. You can retrieve a design's ID from the "List Designs" endpoint or by pulling it from the design's detail page URL in the Marketing Campaigns App.

editor
string

The editor — "design" or "code" — used to modify the Single Send's design in the Marketing Campaigns App.

default: codeAllowed Values: code, design
suppression_group_id
integer or null

The ID of the Suppression Group to allow recipients to unsubscribe — you must provide this or the custom_unsubscribe_url.

custom_unsubscribe_url
string or null

The URL allowing recipients to unsubscribe — you must provide this or the suppression_group_id.

format: uri
sender_id
integer or null

The ID of the verified Sender. You can retrieve a verified Sender's ID from the "Get Verified Senders" endpoint or by pulling it from the Sender's detail page URL in the SendGrid App.

ip_pool
string or null

The name of the IP Pool from which the Single Send emails are sent.

Responses

object
id
string

The unique ID for the Single Send.

format: uuid
name
string

The name of the Single Send.

maxLength: 100minLength: 1
status
string

The current status of the Single Send. The status may be draft, scheduled, or triggered.

Allowed Values: draft, scheduled, triggered
categories
array[string]

The categories associated with this Single Send.

maxItems: 10uniqueItems: True
send_at
string or null

An ISO 8601 formatted date-time when the Single Send is set to be sent. Please note that any send_at property value will have no effect while the Single Send status is draft. You must update the Single Send with the Schedule Single Send endpoint or SendGrid application UI to schedule it.

format: date-time
send_to
object
list_ids
array[string]

The IDs of each contact list to which the Single Send will be sent.

maxItems: 50
segment_ids
array[string]

The IDs of each segment to which the Single Send will be sent.

maxItems: 10
all
boolean

If this property is set to true, the Single Send will be sent to all of your contacts. If it's set to false, at least one list_ids or segment_ids value must be provided before the Single Send is scheduled to be sent.

default: False
updated_at
string

the ISO 8601 time at which the Single Send was last updated.

format: date-time
created_at
string

the ISO 8601 time at which the Single Send was created.

format: date-time
email_config
object
subject
string

The subject line of the Single Send. This property is not used when a design_id value is set.

html_content
string

The HTML content of the Single Send. This property is not used when a design_id value is set.

plain_content
string

The plain text content of the Single Send. This property is not used when a design_id value is set.

generate_plain_content
boolean

If this property is set to true, plain_content is always generated from html_content. If it's set to false, plain_content is not altered.

default: True
design_id
string

A design_id can be used in place of html_content, plain_content, and/or subject. You can retrieve a design's ID from the List Designs endpoint or by pulling it from the design's detail page URL in the Marketing Campaigns App.

editor
string

The editor, design or code, used to modify the Single Send's design in the Marketing Campaigns application user interface.

default: codeAllowed Values: code, design
suppression_group_id
integer or null

The ID of the Suppression Group to allow recipients to unsubscribe. You must provide a suppression_group_id or the custom_unsubscribe_url with your Single Send.

custom_unsubscribe_url
string or null

The URL allowing recipients to unsubscribe. You must provide a custom_unsubscribe_url or a suppression_group_id with your Single Send.

format: uri
sender_id
integer or null

The ID of the verified sender from whom the Single Send will be sent. You can retrieve a verified sender's ID from the Get Verified Senders endpoint or by pulling it from the sender's detail page URL in the SendGrid App.

ip_pool
string or null

The name of the IP Pool from which the Single Send emails are sent.

warnings
array[object]
message
string
field
string
warning_id
string
object
errors
array[object]
field
string
message
string
error_id
string
object
errors
array[object]
field
string
message
string
error_id
string
Loading Code Sample...
        
        

        Create Single Send

        Rate this page:

        Need some help?

        We all do sometimes. Get help now from the Twilio SendGrid Support Team.

        Running into a coding hurdle? Lean on the wisdom of the crowd by browsing the SendGrid tag on Stack Overflow or visiting Twilio's Stack Overflow Collective.

        Loading Code Sample...
              
              
              

              Thank you for your feedback!

              Please select the reason(s) for your feedback. The additional information you provide helps us improve our documentation:

              Sending your feedback...
              🎉 Thank you for your feedback!
              Something went wrong. Please try again.

              Thanks for your feedback!

              thanks-feedback-gif