Pinboard Data API
You can retrieve the data in a Pinboard or other ThoughtSpot visualization.
This API enables you to retrieve the data of a Pinboard or visualization from the ThoughtSpot system. You may want to visualize the following:
-
Fetch all the visualization objects on a Pinboard.
-
Fetch a specific or a group of visualizations on a Pinboard.
Request Parameters
Query Parameter | Data Type | Description |
---|---|---|
|
string |
The pinboard id in the system. |
|
string |
(Optional) The visualization id(s) on a Pinboard. Use this parameter to fetch a specific visualization on a Pinboard. The syntax is:
|
|
integer |
The batch size for loading of Pinboard objects. The system default is |
|
integer |
The system default is |
|
integer |
The system default is
|
|
string |
Valid values are |
Request Example
curl -X POST --header 'Content-Type: application/json' --header 'Accept: application/json' --header 'X-Requested-By: ThoughtSpot' 'https://<instance>/callosum/v1/tspublic/v1/pinboarddata?id=f4533461-caa5-4efa-a189-13815ab86770&batchsize=-1&pagenumber=-1&offset=-1&formattype=COMPACT'
https://<instance>/callosum/v1/tspublic/v1/pinboarddata?id=f4533461-caa5-4efa-a189-13815ab86770&batchsize=-1&pagenumber=-1&offset=-1&formattype=COMPACT
Response Example
{ "4fdf9d2c-6f34-4e3b-9fa6-bd0ca69676e1": { "name": "Sample Name", "columnNames": [ "Opportunity Stage", "Opportunity Owner Name", "Total Amount" ], "data": [ [ "s3 alignment with eb", "jeff cameron", 1102272 ], [ "s4 validation", "brian mcquillan", 59150 ] ], "samplingRatio": 1, "totalRowCount": 14, "rowCount": 14, "pageSize": 10, "offset": 0 } }