Schema

get

List schemas

Authorizations
sessionidstringRequired

Log in using the POST /api/v1/auth/ endpoint

Path parameters
database_idstringRequired
Query parameters
elements_per_pageintegerOptional
requested_pageintegerOptional
Responses
200

Success: List of schemas

application/json
get
/api/v1/schema/{database_id}/
GET /api/v1/schema/{database_id}/ HTTP/1.1
Host: /
Accept: */*
{
  "schemas": [
    {
      "name": "text",
      "n_tables": 1,
      "table_start_index": 1
    }
  ],
  "pagination": {
    "total_elements": 1,
    "total_pages": 1,
    "current_page": 1,
    "returned_elements": 1,
    "is_last_page": true
  }
}

Last updated

Was this helpful?