cURL
curl --request GET \ --url https://api.example.com/api/metastore/catalogs/{catalog_name}/schemas/{schema_name}/tables/{table_name}/details \ --header 'Authorization: Bearer <token>'
{ "table": { "table_name": "<string>", "columns": [ { "name": "<string>", "type": "<string>", "nullable": true, "comment": "<string>" } ], "table_properties": {} } }
Get details for a specific table.
The access token received from the authorization server in the OAuth 2.0 flow.
Catalog name.
Schema name.
Table name.
Data retrieved successfully.
Table metadata details including columns and properties
Show child attributes
Was this page helpful?