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 duplicate an existing Single Send using its Single Send ID.
Duplicating a Single Send is useful when you want to create a Single Send but don't want to start from scratch. Once duplicated, you can update or edit the Single Send by making a PATCH request to the /marketing/singlesends/{id}
endpoint.
If you leave the name
field blank, your duplicate will be assigned the name of the Single Send it was copied from with the text “Copy of ” prepended to it. The name
field length is limited to 100 characters, so the end of the new Single Send name, including “Copy of ”, will be trimmed if the name exceeds this limit.
Bearer <<YOUR_API_KEY_HERE>>
application/json
Optional
The name of the duplicate Single Send. If you choose to leave the name field blank, your duplicate will be assigned the name of the Single Send it was copied from with the text 'Copy of ' prepended to it. The end of the new Single Send name, including 'Copy of ', will be trimmed if the name exceeds the character limit.
1
Max length: 100
Optional
The unique ID for the Single Send.
Optional
The name of the Single Send.
1
Max length: 100
Optional
The current status of the Single Send. The status may be draft
, scheduled
, or triggered
.
draft
scheduled
triggered
Optional
The categories associated with this Single Send.
10
Optional
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.
Optional
Optional
the ISO 8601 time at which the Single Send was last updated.
Optional
the ISO 8601 time at which the Single Send was created.
Optional
Optional
1const client = require("@sendgrid/client");2client.setApiKey(process.env.SENDGRID_API_KEY);34const id = "id";56const request = {7url: `/v3/marketing/singlesends/${id}`,8method: "POST",9};1011client12.request(request)13.then(([response, body]) => {14console.log(response.statusCode);15console.log(response.body);16})17.catch((error) => {18console.error(error);19});