Update the data type of existing columns in a specified table and remove any columns not included in the request.
cURL
curl --request PATCH \ --url https://api.fluxend.app/tables/{fullTableName}/columns \ --header 'Authorization: <authorization>' \ --header 'Content-Type: application/json' \ --header 'X-Project: <x-project>' \ --data '{}'
{ "content": { "defaultValue": "<string>", "foreign": true, "name": "<string>", "notNull": true, "position": 123, "primary": true, "referenceColumn": "<string>", "referenceTable": "<string>", "type": "<string>", "unique": true }, "errors": [ "<string>" ], "metadata": "<any>", "success": true }
Bearer Token
Project UUID
Full table name
Updated column definitions
The body is of type object.
object
Columns altered
The response is of type object.