Authentication
Connections
Data Masking Rules
AWS
Guard Rails
Server Management
Jira
Organization Management
Plugins
Reports
User Management
Sessions
Session
Connections
Get Table Columns
Get columns from a specific table
GET
/
connections
/
{nameOrID}
/
columns
Copy
Ask AI
curl --request GET \
--url https://use.hoop.dev/api/connections/{nameOrID}/columns
Copy
Ask AI
{
"columns": [
{
"name": "<string>",
"nullable": true,
"type": "<string>"
}
]
}
Path Parameters
Name or UUID of the connection
Query Parameters
Name of the database
Name of the table
Name of the schema (optional - for PostgreSQL default is 'public', for others defaults to database name)
Response
200
application/json
OK
The response is of type object
.
Copy
Ask AI
curl --request GET \
--url https://use.hoop.dev/api/connections/{nameOrID}/columns
Copy
Ask AI
{
"columns": [
{
"name": "<string>",
"nullable": true,
"type": "<string>"
}
]
}
Assistant
Responses are generated using AI and may contain mistakes.