GET
/
connections
/
{nameOrID}
/
schemas
curl --request GET \
  --url https://use.hoop.dev/api/connections/{nameOrID}/schemas
{
  "schemas": [
    {
      "name": "<string>",
      "tables": [
        {
          "columns": [
            {
              "name": "<string>",
              "nullable": true,
              "type": "<string>"
            }
          ],
          "name": "<string>"
        }
      ]
    }
  ]
}

Path Parameters

nameOrID
string
required

Name or UUID of the connection

database
string
required

Name of the database

Response

200
application/json
OK
schemas
object[]