Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 0 additions & 8 deletions modules/ROOT/pages/api-changelog.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -8,14 +8,6 @@

This changelog lists only the changes introduced in the Visual Embed SDK. For information about new features and enhancements available for embedded analytics, see xref:whats-new.adoc[What's New].

== Version 1.47.x, April 2026

[width="100%" cols="1,4"]
|====
|[tag greenBackground]#NEW FEATURE# | `hide_logo_url` +

Set this to `true` to entirely hide the logo component in ThoughtSpot notification emails. For more information, refer to the xref:customize-email-apis.adoc[Customize email template documentation].
|====

== Version 1.46.x, March 2026

Expand Down
74 changes: 38 additions & 36 deletions modules/ROOT/pages/customize-email-apis.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -62,45 +62,47 @@ In your `POST` request body, include the following parameters:
[source,CURL]
----
curl -X POST \
--url 'https://{ThoughtSpot-Host}/api/rest/2.0/customization/email' \
-H 'Accept: application/json' \
-H 'Content-Type: application/json' \
-H 'Authorization: Bearer {AUTH_TOKEN}' \
--data-raw '{
{
"template_properties": {
"cta_button_bg_color": "",
"cta_text_font_color": "",
"primary_bg_color": "",
"Logo_url":
"https://storage.pardot.com/710713/1642089901EbkRibJq/TS_fullworkmark_darkmode.png",
"font_family": "",
"product_name": "ThoughtSpot",
"footer_address": "444 Castro St, Suite 1000 Mountain View, CA 94041",
"footer_phone": "(800) 508-7008",
"replacement_value_for_liveboard": "Dashboard",
"replacement_value_for_answer": "Chart",
"replacement_value_for_spot_iq": "AI Insights",
"hide_footer_phone": false,
"hide_footer_address": false,
"hide_product_name": false,
"hide_manage_notification": false,
"hide_mobile_app_nudge": false,
"hide_privacy_policy": false,
"hide_ts_vocabulary_definitions": false,
"hide_error_message": false,
"hide_unsubscribe_link": false,
"hide_notification_status": false,
"hide_modify_alert": false,
"company_website_url": "https://your-website.com/"
"company_privacy_policy_url" : "https://link-to-privacy-policy.com/"
},
"org_identifier": "-1"
}

--url 'https://{ThoughtSpot-Host}/api/rest/2.0/customization/email' \
-H 'Accept: application/json' \
-H 'Content-Type: application/json' \
-H 'Authorization: Bearer {AUTH_TOKEN}' \
--data-raw '{
"template_properties": {
"cta_button_bg_color": "",
"cta_text_font_color": "",
"primary_bg_color": "",
"logo_url": "https://storage.pardot.com/710713/1642089901EbkRibJq/TS_fullworkmark_darkmode.png",
"font_family": "",
"product_name": "ThoughtSpot",
"footer_address": "444 Castro St, Suite 1000 Mountain View, CA 94041",
"footer_phone": "(800) 508-7008",
"replacement_value_for_liveboard": "Dashboard",
"replacement_value_for_answer": "Chart",
"replacement_value_for_spot_iq": "AI Insights",
"hide_footer_phone": false,
"hide_footer_address": false,
"hide_product_name": false,
"hide_manage_notification": false,
"hide_mobile_app_nudge": false,
"hide_privacy_policy": false,
"hide_ts_vocabulary_definitions": false,
"hide_error_message": false,
"hide_unsubscribe_link": false,
"hide_notification_status": false,
"hide_modify_alert": false,
"company_website_url": "https://your-website.com/",
"company_privacy_policy_url": "https://link-to-privacy-policy.com/",
"contact_support_url": "https://link-to-contact-support.com/",
"hide_contact_support_url": false,
"hide_logo_url": false
},
"org_identifier": "-1"
}'
----




[.widthAuto]
[.bordered]
image:./images/email-template.png[JSON actions explained]
Expand Down
6 changes: 6 additions & 0 deletions modules/ROOT/pages/rest-apiv2-changelog.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,12 @@

This changelog lists the features and enhancements introduced in REST API v2.0. For information about new features and enhancements available for embedded analytics, see xref:whats-new.adoc[What's New].

== Version 26.4.0.cl, April 2026

=== Email customization API enhancements

The `template_properties` parameter now has a `hide_logo_url` element for email template customization. Set it to `true` to entirely hide the logo component in the ThoughtSpot notification emails.

== Version 26.3.0.cl, March 2026

=== Webhook APIs
Expand Down