PUT
/
tables
/
{fullTableName}
/
columns
/
{columnName}
Rename column
curl --request PUT \
  --url https://api.fluxend.app/tables/{fullTableName}/columns/{columnName} \
  --header 'Authorization: <authorization>' \
  --header 'Content-Type: application/json' \
  --header 'X-Project: <x-project>' \
  --data '{
  "name": "<string>",
  "projectUUID": "<string>"
}'
{
  "content": "<any>",
  "errors": [
    "<string>"
  ],
  "metadata": "<any>",
  "success": true
}

Headers

Authorization
string
required

Bearer Token

X-Project
string
required

Project UUID

Path Parameters

fullTableName
string
required

Full table name

column_name
string
required

Existing Column Name

Body

application/json

New column name JSON

The body is of type object.

Response

200
application/json

Column renamed

The response is of type object.