Path Parameters
Name or UUID of the connection
Query Parameters
Name of the database
Name of the schema (optional - if not provided, returns tables from all schemas)
Response
OK
The database schemas
curl --request GET \
--url https://use.hoop.dev/api/connections/{nameOrID}/tables
{
"schemas": [
{
"name": "<string>",
"tables": [
"<string>"
]
}
]
}
List tables from a database without column details
curl --request GET \
--url https://use.hoop.dev/api/connections/{nameOrID}/tables
{
"schemas": [
{
"name": "<string>",
"tables": [
"<string>"
]
}
]
}
Name or UUID of the connection
Name of the database
Name of the schema (optional - if not provided, returns tables from all schemas)
OK
The database schemas
Show child attributes
Was this page helpful?