ContributionsMost RecentNewest TopicsMost LikesSolutionsRe: Using BloX to call Sisense APIs Hi sneak, this is great, thank you so much! I didn't think about creating a new action but seems like it's the way to go. This has helped me a lot Using BloX to call Sisense APIs Hello, Has anybody managed to use a BloX action button to call the Sisense API, such as build ElastiCube? I have tried searching online and see that I need to use type "Action.Submit", action is "post" and provide the url and data parameters. I think the issue I am having is exactly how I provide the data. My code is this: { "actions": [ { "type": "Action.Submit", "action": "post", "title": "Refresh Data", "url": "https://[url].com/api/v2/builds/", "data": { "datamodelId": "fb836d1a-2337-475a-a664-39dc58b49268", "buildType": "full", "rowLimit": 0, "schemaOrigin": "latest" } } ] } but I have also experimented with other values in the data. I have included "headers" in the data with "accept": "application/json", "Content-Type": "application/json" and "X-XSRF-TOKEN:" with bearer token, but every thing I do gives me 500 error in the dev console. So my questions is, has anybody managed to get this working? And able to provide guidance on where I've gone wrong? I am using Linux 2022.2. Thanks in advance Solved