Hello everybody,
I’m trying using the API but facing a show stopper.
Listing rows from my table works perfectly well (https://cloud.seatable.io/dtable-server/api/v1/dtables/3285a3e4-ef56-4757-8ea3-33be565b94ac/rows/?table_name=Table1 with the associated access token), but when I try to insert a row (or update an existing one), I get this error :
{
“error_type”: “table_not_exist”,
“error_message”: “table undefined not found”
}
My request looks like this (for the insert):
POST https://cloud.seatable.io/dtable-server/api/v1/dtables/3285a3e4-ef56-4757-8ea3-33be565b94ac/rows
{
“row”: {“Name”: “John”},
“table_name”: “Table1”
}
(with the access token in the Authorization header of course)
As you can see the table_name for the insert request is exactly the same as the one for the list request., so I’m little bit confused ![]()
Has anyone else succeeded to make this insert/append API work without any issue?
Thanks a lot for your feedback & have a nice day.
