GET
/
api
/
v1
/
view
/
{view_name}
curl --request GET \
  --url https://your-engine-url/api/v1/view/{view_name} \
  --header 'Authorization: <api-key>'
{
  "view": {
    "name": "<string>",
    "schema": "<string>",
    "columns": [
      {
        "id": 123,
        "default": "<string>",
        "is_nullable": true,
        "type": "<string>",
        "name": "<string>"
      }
    ],
    "definition": "<string>"
  }
}

Authorizations

Authorization
string
header
required

Enter: 'Bearer <JWT>', where JWT is the access token. Example: Bearer access_token_comes_here

Path Parameters

view_name
string
required

Query Parameters

schema
string
default:public

Response

200
application/json
Successful Response
view
object
required