Description
To delete 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 '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 app. | 
| rowId | Row ID of the table | 
Response Content Type
application/json
Sample Request
curl --location -g --request DELETE 'https://Workspace.ai.kore.ai/public/tableApps/{{tableAppId}}/tables/{{tableId}}/rows/{{rowId}}' \
--header 'auth: {{apiKey}}'
Sample Response
{
"SUCCESS": true
}