The Designs API offers the ability to manage assets stored in the Twilio SendGrid Design Library.
The Design Library is a feature-rich email layout tool and media repository. You can build designs for all your email needs, including Single Sends, Automations, and Dynamic Templates.
You can also duplicate and then modify one of the pre-built designs provided by Twilio SendGrid to get you started.
The Designs API provides a RESTful interface for creating new designs, retrieving a list of existing designs, duplicating or updating a design, and deleting a design.
This endpoint allows you to retrieve a single design.
A GET request to /designs/{id}
will retrieve details about a specific design in your Design Library.
This endpoint is valuable when retrieving information stored in a field that you wish to update using a PATCH request.
Bearer <<YOUR_API_KEY_HERE>>
The ID of the Design you want to duplicate.
Optional
The name of the new design.
Duplicate: <original design name>
Optional
The editor used in the UI.
code
design
Optional
The HTML content of the Design.
1048576
Optional
Plain text content of the Design.
<generated from html_content if left empty>
Max length: 1048576
1const client = require("@sendgrid/client");2client.setApiKey(process.env.SENDGRID_API_KEY);34const id = "f15982c1-a82c-4e87-a6b2-a4a63b4b7644";56const request = {7url: `/v3/designs/${id}`,8method: "GET",9};1011client12.request(request)13.then(([response, body]) => {14console.log(response.statusCode);15console.log(response.body);16})17.catch((error) => {18console.error(error);19});