Skip to content

List deleted tables

Request

Returns a paginated list of deleted recoverable tables for the authenticated account.

Security
ApiKeyAuth
Query
cursor_idinteger

ID of the last table from the previous page; omit for the first page

page_sizeinteger, [ 1 .. 100 ]

Number of tables to return per page

Default:25
database_idinteger

Filter deleted tables by database ID

curl -i -X GET \
  'https://api.treasuredata.com/v3/table/deleted?cursor_id=0&page_size=25&database_id=0' \
  -H 'Authorization: TD1 <YOUR_TOKEN_HERE>'

Responses

OK

Bodyapplication/json
tablesArray of objects(Deleted Table)required
cursor_idinteger or nullrequired

ID of the last table in this page; pass as cursor_id to get the next page, or null if this is the last page

Example:456
Response
{ "tables": [ {} ], "cursor_id": 456 }