POST
/
tables
Create table
curl --request POST \
  --url https://api.fluxend.app/tables \
  --header 'Authorization: <authorization>' \
  --header 'Content-Type: application/json' \
  --header 'X-Project: <x-project>' \
  --data '{}'
{
  "content": {
    "estimatedRows": 123,
    "id": 123,
    "name": "<string>",
    "schema": "<string>",
    "totalSize": "<string>"
  },
  "errors": [
    "<string>"
  ],
  "metadata": "<any>",
  "success": true
}

Headers

Authorization
string
required

Bearer Token

X-Project
string
required

Project UUID

Body

application/json · object

Table definition JSON

The body is of type object.

Response

201
application/json

Table created

The response is of type object.