You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
### List Development Branch Workspace Objects [GET]
5980
+
5981
+
Returns a list of objects (tables and views) present in the workspace schema in [Development Branch](#reference/development-branches). Supported on Snowflake and BigQuery backends.
5982
+
5983
+
+ Parameters
5984
+
+ branch_id (required) - Id of the development branch
5985
+
+ workspace_id (required, number) - Workspace ID
5986
+
5987
+
+ Request
5988
+
+ Headers
5989
+
5990
+
X-StorageApi-Token: your_token
5991
+
5992
+
+ Response 200 (application/json)
5993
+
5994
+
+ Body
5995
+
5996
+
[
5997
+
{
5998
+
"name": "MY_TABLE",
5999
+
"type": "table"
6000
+
},
6001
+
{
6002
+
"name": "MY_VIEW",
6003
+
"type": "view"
6004
+
}
6005
+
]
6006
+
6007
+
+ Response 404 (application/json)
6008
+
6009
+
+ Response 422 (application/json)
6010
+
6011
+
Returned when the workspace backend is not supported.
0 commit comments