Handler for SQL CREATE MATERIALIZED VIEW statements
curl --request POST \
--url https://api.example.com/apps/{app_id}/views/sql \
--header 'Content-Type: application/json' \
--data '
{
"sql": "<string>",
"refresh_mode": "<string>"
}
'import requests
url = "https://api.example.com/apps/{app_id}/views/sql"
payload = {
"sql": "<string>",
"refresh_mode": "<string>"
}
headers = {"Content-Type": "application/json"}
response = requests.post(url, json=payload, headers=headers)
print(response.text)const options = {
method: 'POST',
headers: {'Content-Type': 'application/json'},
body: JSON.stringify({sql: '<string>', refresh_mode: '<string>'})
};
fetch('https://api.example.com/apps/{app_id}/views/sql', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "https://api.example.com/apps/{app_id}/views/sql",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "POST",
CURLOPT_POSTFIELDS => json_encode([
'sql' => '<string>',
'refresh_mode' => '<string>'
]),
CURLOPT_HTTPHEADER => [
"Content-Type: application/json"
],
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"strings"
"net/http"
"io"
)
func main() {
url := "https://api.example.com/apps/{app_id}/views/sql"
payload := strings.NewReader("{\n \"sql\": \"<string>\",\n \"refresh_mode\": \"<string>\"\n}")
req, _ := http.NewRequest("POST", url, payload)
req.Header.Add("Content-Type", "application/json")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.post("https://api.example.com/apps/{app_id}/views/sql")
.header("Content-Type", "application/json")
.body("{\n \"sql\": \"<string>\",\n \"refresh_mode\": \"<string>\"\n}")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.example.com/apps/{app_id}/views/sql")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Post.new(url)
request["Content-Type"] = 'application/json'
request.body = "{\n \"sql\": \"<string>\",\n \"refresh_mode\": \"<string>\"\n}"
response = http.request(request)
puts response.read_bodyMaterialized Views
Handler for SQL CREATE MATERIALIZED VIEW statements
POST /apps/:app_id/views/sql
Body: { "sql": "CREATE MATERIALIZED VIEW app::view AS SELECT ... FROM app::collection WHERE ..." }
Headers: X-App-Key (required with Admin permission)
The SQL must use the "app::collection" format for table references.
This handler translates the SQL to JSON and calls the existing create_materialized_view handler.
POST
/
apps
/
{app_id}
/
views
/
sql
Handler for SQL CREATE MATERIALIZED VIEW statements
curl --request POST \
--url https://api.example.com/apps/{app_id}/views/sql \
--header 'Content-Type: application/json' \
--data '
{
"sql": "<string>",
"refresh_mode": "<string>"
}
'import requests
url = "https://api.example.com/apps/{app_id}/views/sql"
payload = {
"sql": "<string>",
"refresh_mode": "<string>"
}
headers = {"Content-Type": "application/json"}
response = requests.post(url, json=payload, headers=headers)
print(response.text)const options = {
method: 'POST',
headers: {'Content-Type': 'application/json'},
body: JSON.stringify({sql: '<string>', refresh_mode: '<string>'})
};
fetch('https://api.example.com/apps/{app_id}/views/sql', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "https://api.example.com/apps/{app_id}/views/sql",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "POST",
CURLOPT_POSTFIELDS => json_encode([
'sql' => '<string>',
'refresh_mode' => '<string>'
]),
CURLOPT_HTTPHEADER => [
"Content-Type: application/json"
],
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"strings"
"net/http"
"io"
)
func main() {
url := "https://api.example.com/apps/{app_id}/views/sql"
payload := strings.NewReader("{\n \"sql\": \"<string>\",\n \"refresh_mode\": \"<string>\"\n}")
req, _ := http.NewRequest("POST", url, payload)
req.Header.Add("Content-Type", "application/json")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.post("https://api.example.com/apps/{app_id}/views/sql")
.header("Content-Type", "application/json")
.body("{\n \"sql\": \"<string>\",\n \"refresh_mode\": \"<string>\"\n}")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.example.com/apps/{app_id}/views/sql")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Post.new(url)
request["Content-Type"] = 'application/json'
request.body = "{\n \"sql\": \"<string>\",\n \"refresh_mode\": \"<string>\"\n}"
response = http.request(request)
puts response.read_bodyPath Parameters
Application ID
Body
application/json
SQL CREATE MATERIALIZED VIEW Request
SQL CREATE MATERIALIZED VIEW statement Format: CREATE MATERIALIZED VIEW app::view_name AS SELECT ... FROM app::collection WHERE ... GROUP BY ... Example: "CREATE MATERIALIZED VIEW myapp::daily_summary AS SELECT market, SUM(volume) as total FROM myapp::trades GROUP BY market"
Optional refresh mode: "live" (auto-refresh on write) or "lazy" (manual refresh) Defaults to "lazy"
Response
View created successfully