Aditya
TFDThoughtSpot For Developers
•Created by seansy-archy on 4/21/2025 in #dev-help
seansy-archy - Another question I had, I submit...

16 replies
TFDThoughtSpot For Developers
•Created by seansy-archy on 4/21/2025 in #dev-help
seansy-archy - Another question I had, I submit...
This will also return the same data.
16 replies
TFDThoughtSpot For Developers
•Created by ferg.rose on 4/23/2025 in #dev-help
ferg.rose - Hello - we are looking to embed one...
Hi @ferg.rose AuthType.NONE is primarily recommended for development environments and not for production, due to security concerns. Using it in production could expose your ThoughtSpot instance to unauthorized access or misuse, especially if the embed is not tightly scoped or controlled. I would suggest you to go with Cookiless Authentication.
2 replies
TFDThoughtSpot For Developers
•Created by seansy-archy on 4/21/2025 in #dev-help
seansy-archy - Another question I had, I submit...
@eric.silva can you please mention what API are you using where you see this inconsistency?
16 replies
TFDThoughtSpot For Developers
•Created by seansy-archy on 4/21/2025 in #dev-help
seansy-archy - Another question I had, I submit...
I see. I am checking internally with the team and will update you.
16 replies
TFDThoughtSpot For Developers
•Created by seansy-archy on 4/21/2025 in #dev-help
seansy-archy - Another question I had, I submit...
Hey @seansy-archy
1. We are checking this internally. Can you please also raise a support ticket for this?
2. I didn't get you what you are trying to ask here. Can you please explain a bit more on what are your expectations here?
3. We can use headlineVisibilityMap to know which columnId is visibile and which is not.
4. Please raise a support ticket so that correct team can check on this.
16 replies
TFDThoughtSpot For Developers
•Created by Valhalla on 3/14/2025 in #dev-help
Tim - Hello 👋 I'm embedding a liveboard, and I...
Please enter your own TS cluster and liveboardId
7 replies
TFDThoughtSpot For Developers
•Created by Valhalla on 3/14/2025 in #dev-help
Tim - Hello 👋 I'm embedding a liveboard, and I...
https://codesandbox.io/p/sandbox/c59tvd?file=%2Fsrc%2FApp.tsx%3A11%2C71
I tried it out here and it is working fine. Can you please check this?
7 replies
TFDThoughtSpot For Developers
•Created by Valhalla on 3/14/2025 in #dev-help
Tim - Hello 👋 I'm embedding a liveboard, and I...
That's weird that should not happen let me check.
7 replies
TFDThoughtSpot For Developers
•Created by Valhalla on 3/14/2025 in #dev-help
Tim - Hello 👋 I'm embedding a liveboard, and I...
Hi @Valhalla Supporting custom actions for liveboard is in our roadmap but currently we do not support this and you will have to create a button in your host application to support your usecase.
cc : @utsav.kapoor @Nicolas
7 replies
TFDThoughtSpot For Developers
•Created by Érico on 2/12/2025 in #dev-help
Érico - Hello guys!We're embedding our first T...
Hey @Érico did you tried using pre-render while embedding Liveboard? It will help you in loading your liveboard shell much earlier and can help you in getting better performance.
Documentation for the same - https://developers.thoughtspot.com/docs/prerender#_prerender
31 replies
TFDThoughtSpot For Developers
•Created by Ashot on 3/11/2025 in #dev-help
Ashot - @shikharTS hello, I’m embedding a Thou...
Hey @Ashot Can you please tell me what is your cluster version?
10 replies
TFDThoughtSpot For Developers
•Created by rumana-hf on 1/6/2025 in #dev-help
Hey Team, We have embedded the App using
Hi @Suvash Please add
linkOverride
flag to true in your embed method to make it work for open in new tab when you right click on the tab.
Also, you can disable opening of new link in new tab using this flag -
disableRedirectionLinksInNewTab
to true
Relevant documentation - https://developers.thoughtspot.com/docs/Interface_SearchViewConfig#_disableredirectionlinksinnewtab
https://developers.thoughtspot.com/docs/Interface_SearchViewConfig#_linkoverride
Let me know if this doesn't works for you.17 replies
TFDThoughtSpot For Developers
•Created by Delvin on 2/9/2025 in #dev-help
Chaim Platonov - Hey,I'm writing code to sync ...
@pallav PTAL
30 replies
TFDThoughtSpot For Developers
•Created by Alexandre Hausmann - Wex on 2/6/2025 in #dev-help
Alexandre Hausmann - Wex - Hey guysI need as...
Hi @Alexandre Hausmann - Wex If I understood your requirement correctly, you want to pass a path in AppEmbed and wanted to go to a liveboard with a specific tab using vizId. In that case you can pass your path like this -
path: '/insights/pinboard/03c55690-352d-4a25-b6d0-7b6fcce70daa/4ff627a4-3ff1-44db-b4a6-cee4cf214aa9'
and it will redirect you to the liveboard tab in which this vizId exists.8 replies
TFDThoughtSpot For Developers
•Created by rumana-hf on 2/7/2025 in #dev-help
rumana-hf - Hey there. I've been trying to quic...
Hi @rumana-hf Can you please add
{object-id}?{ts-query-params}
after your URLs for Liveboard, Liveboard Visualization and Answer, add {object-id} after your SpotIQ Analytics page and add {path} to your generic link URL. This will not come up in your URL but its there just to inform user that they can add these fields as well.5 replies
TFDThoughtSpot For Developers
•Created by Prathic_BD on 2/3/2025 in #dev-help
Prathic_BD - I am trying to add an event listen...
You can follow this documentation as well - https://developers.thoughtspot.com/docs/code-samples#_event_trigger_on_react_components
10 replies
TFDThoughtSpot For Developers
•Created by Prathic_BD on 2/3/2025 in #dev-help
Prathic_BD - I am trying to add an event listen...
You can do something like this -
<AppEmbed
ref={embedRef}
onALL={() => {console.log('hello world!')}}
/>
10 replies
TFDThoughtSpot For Developers
•Created by Murali Krishna on 12/13/2024 in #dev-help
Hello team,
Hi @Murali Krishna if you want to add an authentication mechanism to validate if the user is valid or not, you can call the auth token api to fetch the token for that user. If the user is not valid, you can throw out the error. If the user is valid, then you can use this token to call download csv API
5 replies