Get Active Integrations
curl --request GET \
--url https://api.vellaro.io/api/v1/tenant/integrations/activeimport requests
url = "https://api.vellaro.io/api/v1/tenant/integrations/active"
response = requests.get(url)
print(response.text)const options = {method: 'GET'};
fetch('https://api.vellaro.io/api/v1/tenant/integrations/active', 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.vellaro.io/api/v1/tenant/integrations/active",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"net/http"
"io"
)
func main() {
url := "https://api.vellaro.io/api/v1/tenant/integrations/active"
req, _ := http.NewRequest("GET", url, nil)
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.get("https://api.vellaro.io/api/v1/tenant/integrations/active")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.vellaro.io/api/v1/tenant/integrations/active")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Get.new(url)
response = http.request(request)
puts response.read_body{
"data": {},
"meta": {
"page": 123,
"page_size": 123,
"total": 123,
"total_pages": 123
},
"error": "<string>",
"error_code": "<string>"
}tenant
Get Active Integrations
Public: browser-safe view of the tenant’s enabled integrations.
The storefront’s <IntegrationsBootstrap /> hits this endpoint once
on the first paint to know which third-party scripts to load
(Iubenda CMP, GTM, Sentry, …). The Consent Mode v2 dance then runs
on top of the returned config.
Security:
- Only
is_active=truerows are returned. - Secret fields (CAPI tokens, MP API secrets, Sentry auth tokens) are stripped here — the public payload is safe to embed in the HTML of an unauthenticated page.
- The endpoint is public-no-auth but tenant-scoped: the
middleware resolves the tenant from Host header / X-Tenant-Slug,
same as
/tenant/brand.
Cache hint: the storefront can cache this for ~5 minutes; a longer TTL would delay the operator’s “I just disabled Pixel” intent.
GET
/
api
/
v1
/
tenant
/
integrations
/
active
Get Active Integrations
curl --request GET \
--url https://api.vellaro.io/api/v1/tenant/integrations/activeimport requests
url = "https://api.vellaro.io/api/v1/tenant/integrations/active"
response = requests.get(url)
print(response.text)const options = {method: 'GET'};
fetch('https://api.vellaro.io/api/v1/tenant/integrations/active', 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.vellaro.io/api/v1/tenant/integrations/active",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"net/http"
"io"
)
func main() {
url := "https://api.vellaro.io/api/v1/tenant/integrations/active"
req, _ := http.NewRequest("GET", url, nil)
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.get("https://api.vellaro.io/api/v1/tenant/integrations/active")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.vellaro.io/api/v1/tenant/integrations/active")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Get.new(url)
response = http.request(request)
puts response.read_body{
"data": {},
"meta": {
"page": 123,
"page_size": 123,
"total": 123,
"total_pages": 123
},
"error": "<string>",
"error_code": "<string>"
}