Description
To search for table applications for which you have access.
Note: To use this API a personal user profile token must be generated. For more information about how to get an API key see, Generating API key.
GET https://app.workspace.ai/api/public/tableApps?wsId={{wsId}}&q={{tableName}}&offset=20&limit=20
Header
Invoke the API with JWT in the header with the following syntax:
auth: {{apiKey}}
API Parameters
| Parameter | Description | 
| wsId | Name of the table app ID received in the API from the workspace for which you have access. | 
| q | Name of the table app. | 
| offset | The offset is used to fetch a specific page result. The default offset value is ‘0’
 For example, offset=20.  | 
| limit | The maximum number of records to return. Max value for limit is 100.
 For example, limit=20.  | 
Response Content Type
application/json
Sample Request
curl --location --request GET https://Workspace.ai.kore.ai/public/workSpaces?q=name&offset=20&limit=20' \
--header 'auth: {{apiKey}}'
Sample Response
{
"tableApps": [
{
"appId": "i-04c4119b-5110-5a2e-90af-fca0de46922f",
"name": "Platform Campaigns",
"wsId": "61b0928abdd9064feb06b7ae",
"type": "table"
},
{
"appId": "i-04fdf3d0-aa90-5880-9283-41a5b24e5ed0",
"name": "Employee Directory",
"wsId": "62b1ffd5972ce57c6c887d77",
"type": "table"
}  
]
}