Skip to main content
POST
/
projects
/
{project_name}
/
tables
Create a new table
curl --request POST \
  --url https://api.cloudsquid.io/api/projects/{project_name}/tables \
  --header 'Content-Type: application/json' \
  --header 'X-API-Key: <api-key>' \
  --data '
{
  "name": "<string>",
  "id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
  "created_at": "2023-11-07T05:31:56Z",
  "settings": {}
}
'
{
  "name": "<string>",
  "id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
  "created_at": "2023-11-07T05:31:56Z",
  "settings": {}
}

Documentation Index

Fetch the complete documentation index at: https://docs.cloudsquid.io/llms.txt

Use this file to discover all available pages before exploring further.

Authorizations

X-API-Key
string
header
required

Path Parameters

project_name
string
required

the name of the project

Body

application/json

Table Configuration

name
string
required

name of the table

type
enum<string>
required

the type of the table

Available options:
Extraction,
Reconcile,
Storage
id
string<uuid>

id of the table

created_at
string<date-time>

time the table was created

settings
object

settings of the table

Response

Successfully created table

Table Configuration

name
string
required

name of the table

type
enum<string>
required

the type of the table

Available options:
Extraction,
Reconcile,
Storage
id
string<uuid>

id of the table

created_at
string<date-time>

time the table was created

settings
object

settings of the table