Updates a table.
Security
ApiKeyAuth
whether to override a possible existing table in case of updating the name
Example:false
- https://api.treasuredata.com/v3https://api.treasuredata.com/v3/table/update/{database_name}/{table_name}
- https://api.treasuredata.co.jp/v3https://api.treasuredata.co.jp/v3/table/update/{database_name}/{table_name}
- https://api.ap02.treasuredata.com/v3https://api.ap02.treasuredata.com/v3/table/update/{database_name}/{table_name}
- https://api.eu01.treasuredata.com/v3https://api.eu01.treasuredata.com/v3/table/update/{database_name}/{table_name}
- TableSchemaAsArray
- TableSchemaAsString
curl -i -X POST \
https://api.treasuredata.com/v3/table/update/Alpha/Bravo \
-H 'Authorization: TD1 <YOUR_TOKEN_HERE>' \
-H 'Content-Type: application/x-www-form-urlencoded' \
-d detect_schema=true \
-d expire_days=30 \
-d include_v=false \
-d name=Bravo \
-d 'description=Click events.' \
-d 'schema=[["name","string","first_name"],["creation_date","long"]]' \
-d ignore_duplicate_schema=true \
-d overwrite=falseResponse
{ "database": "Alpha", "table": "Bravo", "type": "log" }