curl --request GET \
--url https://use.hoop.dev/api/connections/{nameOrID}/columns
{
"columns": [
{
"name": "<string>",
"nullable": true,
"type": "<string>"
}
]
}
Get columns from a specific table
curl --request GET \
--url https://use.hoop.dev/api/connections/{nameOrID}/columns
{
"columns": [
{
"name": "<string>",
"nullable": true,
"type": "<string>"
}
]
}
Name or UUID of the connection
Name of the database
Name of the table
Name of the schema (optional - for PostgreSQL default is 'public', for others defaults to database name)
OK
The response is of type object
.
Was this page helpful?