Description
To create a row inside a table and add content in the row.
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}}/rows
Header
Invoke the API with JWT in the header with the following syntax:
Content-Type: application/json;charset=UTF-8
auth: {{apiKey}}
data-raw '{ 
    "title": "my row title column value"
}'
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 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 -g --request GET 'https://Workspace.ai.kore.ai/public/tableApps/{{tableAppId}}/tables/{{tableId}}/rows?&offset=20&limit=20' \
--header 'auth: {{apiKey}}'
Sample Response
{
"id": "62bb0b5224c65d1274851890",
"lMod": "2022-06-28T14:08:18.000Z",
"cOn": "2022-06-28T14:08:18.000Z",
"indexId": 6,
"position": "0|10001c:",
"wsId": "62baff5024c65d127485187a",
"appId": "i-0d7d6f7b-c961-5401-bdd2-16fc738d7b62",
"tableId": "62bb04c6124d460eee1860b1",
"createdBy": "u-1063ff23-a182-595c-98e8-cfdd9964fefa",
"lModBy": "u-1063ff23-a182-595c-98e8-cfdd9964fefa",
"title": "My row title column value",
"state": 0
}