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