From e2c04f55f3fe176d5ba846796a29bbd1b394c2da Mon Sep 17 00:00:00 2001 From: Sierra Guequierre Date: Mon, 3 Feb 2025 11:57:46 -0500 Subject: [PATCH] Add explanation that API key needs to have permissions at the organization level --- src/viam/app/data_client.py | 1 + 1 file changed, 1 insertion(+) diff --git a/src/viam/app/data_client.py b/src/viam/app/data_client.py index 5eb96b6aa..a20e3fb0f 100644 --- a/src/viam/app/data_client.py +++ b/src/viam/app/data_client.py @@ -321,6 +321,7 @@ async def tabular_data_by_filter( async def tabular_data_by_sql(self, organization_id: str, sql_query: str) -> List[Dict[str, Union[ValueTypes, datetime]]]: """Obtain unified tabular data and metadata, queried with SQL. + Make sure your API key has permissions at the organization level in order to use this. ::