Rest api end point for get the schema list for given catalog_id /catalog_name

204 Views Asked by At

can you please confirm on end point URL to get the list of schemes for given catalog_id or catalog_name in Unity catalog stand When I tried use below end point getting 404 .

endpoint = f"{workspace_url}/api/2.1/unity-catalogs/{catalog_name}/schemas"  

Reference : link

tried both

endpoint = f"{workspace_url}/api/2.1/unity-catalogs/schemas"

enter image description here

enter image description here

1

There are 1 best solutions below

0
Karthikeyan Rasipalay Durairaj On

found the answer and end point should be

endpoint = f"{workspace_url}/api/2.1/unity-catalog/schemas?catalog_name=<catalog-name>"