Change the name of a specific table within a project.
cURL
curl --request PUT \ --url https://api.fluxend.app/tables/{tableUUID}/rename \ --header 'Authorization: <authorization>' \ --header 'Content-Type: application/json' \ --header 'X-Project: <x-project>' \ --data '{ "name": "<string>", "projectUUID": "<string>" }'
{ "content": { "estimatedRows": 123, "id": 123, "name": "<string>", "schema": "<string>", "totalSize": "<string>" }, "errors": [ "<string>" ], "metadata": "<any>", "success": true }
Bearer Token
Project UUID
Table UUID
New table name JSON
The body is of type object.
object
Table renamed
The response is of type object.