.dataset().row().delete()

.dataset(...).row(...).delete(): Dictionary

Delete a given row from a data set.

Parameters

  • N/A

Returns

The returned JSON contains a success property to indicate the status of the action and possibly an error property if the request should fail, with a message explaining why it failed.

{
	"success": boolean,  // success indicator
	"error": string      // Error message. Please note that this is only returned if there is an error
}

Example

The following shows an example call to delete a row which has an id of 13:

api = CloudTablesApi(':apiKey', subdomain='sub-domain')
result = api.dataset(':id').row(13).delete()

The resulting JSON structure is:

{
	"success": true
}