A Single Send is a one-time, non-automated 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/
This endpoint allows you to retrieve details about one Single Send using a Single Send ID.
You can retrieve all of your Single Sends by making a GET request to the /marketing/singlesends
endpoint.
Bearer <<YOUR_API_KEY_HERE>>
The unique ID for the Single Send.
The name of the Single Send.
1
Max length: 100
The current status of the Single Send. The status may be draft
, scheduled
, or triggered
.
draft
scheduled
triggered
The categories associated with this Single Send.
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.
the ISO 8601 time at which the Single Send was last updated.
the ISO 8601 time at which the Single Send was created.
1const client = require('@sendgrid/client');2client.setApiKey(process.env.SENDGRID_API_KEY);34const id = "ZGkrHSypTsudrGkmdpJJ";56const request = {7url: `/v3/marketing/singlesends/${id}`,8method: 'GET',910}1112client.request(request)13.then(([response, body]) => {14console.log(response.statusCode);15console.log(response.body);16})17.catch(error => {18console.error(error);19});