Warehouses
get
Authorizations
Query parameters
afterstringOptional
limitnumberOptional
Responses
200Success
application/json
Responseall of
and
get
GET /v1/warehouses HTTP/1.1
Host:
Authorization: Bearer JWT
Accept: */*
200Success
{
"paging": {
"next": {
"after": "text"
}
},
"data": [
{
"id": "text",
"name": "text",
"is_managed": true,
"is_bi_enabled": true,
"is_data_loading_enabled": true,
"is_persistence_engine_enabled": true,
"warehouse_type": "BIGQUERY"
}
]
}
get
Authorizations
Path parameters
warehouseIdstringRequired
Responses
200Success
application/json
get
GET /v1/warehouses/{warehouseId} HTTP/1.1
Host:
Authorization: Bearer JWT
Accept: */*
200Success
{
"id": "text",
"name": "text",
"is_managed": true,
"is_bi_enabled": true,
"is_data_loading_enabled": true,
"is_persistence_engine_enabled": true,
"warehouse_type": "BIGQUERY"
}
Last updated
Was this helpful?