Description
To search for a specific table from a table application using a specific table app ID.
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/{{tableAppId}}/tables/{{tableId}}
Header
Invoke the API with JWT in the header with the following syntax:
auth: {{apiKey}}
API Parameters
| Parameter | Description | 
| tableAppId | The table app ID received in the API from the table app for which you have access. | 
| tableId | Name of the table ID. | 
Response Content Type
application/json
Sample Request
curl --location -g --request GET 'https://Workspace.ai.kore.ai/public/tableApps/{{tableAppId}}/tables/{{tableId}}' \
--header 'auth: {{apiKey}}'
Sample Response
{
"id": "62bb04c6124d460eee1860b1",
"name": "Campaigns",
"wsId": "62baff5024c65d127485187a",
"columns": [
{
"system": false,
"multi": false,
"isExternal": false,
"cascade": 0,
"deleted": false,
"name": "Name",
"type": "text",
"config": {
"max": 256
},
"cSchema": {
"type": "string"
},
"id": "title"
}
],
"templateId": "standard",
"appId": "i-0d7d6f7b-c961-5401-bdd2-16fc738d7b62",
"createdOn": "2022-06-28T13:40:22.651Z",
"lastModified": "2022-06-28T13:40:22.000Z"
}