Description
To update details of a specific row in a table using the row ID of 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/{{rowId}}
Header
Invoke the API with JWT in the header with the following syntax:
--header 'Content-Type: application/json;charset=UTF-8' \
--header 'auth: {{apiKey}}' \
Body
Update any column value by using the ID fetched from a specific table schema:
--data-raw '{
    "status": "20"
}'
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. | 
| rowId | Row ID of the table | 
Response Content Type
application/json
Sample Request
curl --location -g --request PATCH 'https://Workspace.ai.kore.ai/public/tableApps/{{tableAppId}}/tables/{{tableId}}/rows/{{rowId}}' \
--header 'Content-Type: application/json;charset=UTF-8' \
--header 'auth: {{apiKey}}' \
--data-raw '{
"status": "20"
}'
Sample Response
{
"id": "62bb0b5224c65d1274851890",
"lMod": "2022-06-28T14:09:37.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": "Gartner Campaign",
"status": "20",
"state": 0
}