view
Get Views
Gets the paginated list of all the views from the given schema. If no schema is provided then the function retreives all of the views from all of the schemas. pg_catalog and information_schema related views are exempted, unless specified. The API can only return 100 views at a time, starting from the offset number specified.
Parameters
- schema : str, default None The schema to retrieve the views from. If None is provided, refers to all schemas.
- verbose: bool, default False Whether to include only base information or verbose information on the views.
- offset: int, default 0 The offset position of where to select the views from.
- limit: int, default 100 The number of views to retrieve. This value must range from 0 and 100.
Returns
A ViewsResponse Pydantic object containing a List of either View Pydantic or Base Table Pydantic models depending on the verbose parameter.
GET
/
api
/
v1
/
view
/
Authorizations
Enter: 'Bearer <JWT>', where JWT is the access token. Example: Bearer access_token_comes_here
Query Parameters
Response
200 - application/json
The response is of type any
.