Skip to content

Get a branding email

Request

Retrieves a single branding email template

Security
basicAuth
Path
branding_email_typestringrequired

The type of branding email to retrieve

Enum:"email-cancelled""email-rejected""email-reminder""email-reminder-password""email-send""email-send-password""email-signed""email-widget-verify"
Example:email-cancelled
GET
/branding/emails/{branding_email_type}
curl -i -X GET \
  -u '<username>:<password>' \
  https://api.signable.co.uk/v1/branding/emails/email-cancelled

Responses

A single branding email template

Bodyapplication/json
httpintegerrequired
Example:200
branding_email_typestringrequired

Type of the branding email template

Enum:"email-cancelled""email-rejected""email-reminder""email-reminder-password""email-send""email-send-password""email-signed""email-widget-verify"
Example:"email-cancelled"
branding_email_subjectstringrequired

Subject line with variables

Example:"{company name} has cancelled a document"
branding_email_contentstringrequired

HTML version of the email template

Example:"<body style=...>...</body>"
branding_email_content_plainstringrequired

Plain text version of the email

Example:"{company name} has cancelled the {contract title} document."
branding_email_updatedstring, (date-time)required

Last updated timestamp (ISO 8601)

Example:"2025-07-01T08:40:38+0000"
Response
{ "http": 200, "branding_email_type": "email-cancelled", "branding_email_subject": "{company name} has cancelled a document", "branding_email_content": "<body style=\"font-family:Arial,Helvetica,sans-serif;\">\n<table style=\"background:#FFF;font-family:Arial,Helvetica,sans-serif;border-collpase:collapse;width:600px;margin:0 auto;\">\n <tr>\n <td>\n <table style=\"border-collpase:collapse\">\n <tr>\n <td style=\"padding:15px 10px 10px\">\n <a href=\"https://www.signable.co.uk\">\n <img src=\"{company logo}\" alt=\"{company name}\" />\n </a>\n </td>\n </tr>\n <tr>\n <td style=\"padding-top:10px\">\n <h1 style=\"font-size:15px;\">A document previously sent to you has been cancelled</h1>\n <p><strong>{company name}</strong> has cancelled the <strong>{contract title}</strong> document.</p>\n <p>Kind regards, <a href=\"https://www.signable.co.uk\">Signable</a></p>\n </td>\n </tr>\n </table>\n </td>\n </tr>\n</table>\n</body>\n", "branding_email_content_plain": "A document previously sent to you has been cancelled\n\n{company name} has cancelled the {contract title} document.\n\nKind regards,\nSignable\n\nhttps://www.signable.co.uk\n", "branding_email_updated": "2025-07-01T08:40:38+0000" }