Is it possible to get the latest entry of a table via api?

As the topic says, I seek for a way to get the latest row from a table. Even better would be to get the row i just added via API, but i hope both are the same, cause the script is fast…:wink:

Any suggestion?

This is how you do it:

data = {
  "column_name1":"something",
  "column_name2":"something else"
}
row = base.append_row("table_name",data)
print(row)

I had to use http requests, since I used outlook VBA. but it is in the response text. problem solved, thank you.

This topic was automatically closed 2 days after the last reply. New replies are no longer allowed.