curl --request POST \
--url https://api.example.com/tables/{table_id}/columns \
--header 'Content-Type: application/json' \
--cookie fastapiusersauth= \
--data '
{
"name": "<string>",
"type": "TEXT",
"nullable": true,
"default": null
}
'{
"detail": [
{
"loc": [
"<string>"
],
"msg": "<string>",
"type": "<string>"
}
]
}Add a column to a table.
curl --request POST \
--url https://api.example.com/tables/{table_id}/columns \
--header 'Content-Type: application/json' \
--cookie fastapiusersauth= \
--data '
{
"name": "<string>",
"type": "TEXT",
"nullable": true,
"default": null
}
'{
"detail": [
{
"loc": [
"<string>"
],
"msg": "<string>",
"type": "<string>"
}
]
}Create model for a table column.
Successful Response
Was this page helpful?