New table baserow localhost api

Hi,

Your initial post was regarding creating a new table. To do so, please use the “Request” section in the documentation, you only need to provide a name at minimum:

POST /api/database/tables/database/{databaseId}/

With data:

{
    "name": "test"
}

This will result in a new table being created.

What you are doing however is creating a data-synced table. The following works for me:

POST /api/database/data-sync/database/{databaseId}/

{
    "synced_properties": [],
    "table_name": "test",
    "type": "local_baserow_table",
    "source_table_id": 718
}

Cheers,
Peter Evans