Lookup Tables
List Lookup Tables
Get a list of Lookup Tables defined in the project.
GET
/
lookup-tables
List Lookup Tables
curl --request GET \
--url https://{region}.mixpanel.com/lookup-tables \
--header 'Authorization: Basic <encoded-value>'import requests
url = "https://{region}.mixpanel.com/lookup-tables"
headers = {"Authorization": "Basic <encoded-value>"}
response = requests.get(url, headers=headers)
print(response.text)const options = {method: 'GET', headers: {Authorization: 'Basic <encoded-value>'}};
fetch('https://{region}.mixpanel.com/lookup-tables', 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://{region}.mixpanel.com/lookup-tables",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
CURLOPT_HTTPHEADER => [
"Authorization: Basic <encoded-value>"
],
]);
$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://{region}.mixpanel.com/lookup-tables"
req, _ := http.NewRequest("GET", url, nil)
req.Header.Add("Authorization", "Basic <encoded-value>")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.get("https://{region}.mixpanel.com/lookup-tables")
.header("Authorization", "Basic <encoded-value>")
.asString();require 'uri'
require 'net/http'
url = URI("https://{region}.mixpanel.com/lookup-tables")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Get.new(url)
request["Authorization"] = 'Basic <encoded-value>'
response = http.request(request)
puts response.read_body{
"code": 200,
"status": "OK",
"results": [
{
"id": "55b4fb2b-e8de-466c-930f-8b36640b9b5e",
"name": "Accounts"
},
{
"id": "1297297a-43a7-4cac-82b0-635d2bd88aac",
"name": "Product Catalog"
}
]
}{
"code": 401,
"error": "Invalid credentials",
"status": "Unauthorized"
}Was this page helpful?
⌘I
List Lookup Tables
curl --request GET \
--url https://{region}.mixpanel.com/lookup-tables \
--header 'Authorization: Basic <encoded-value>'import requests
url = "https://{region}.mixpanel.com/lookup-tables"
headers = {"Authorization": "Basic <encoded-value>"}
response = requests.get(url, headers=headers)
print(response.text)const options = {method: 'GET', headers: {Authorization: 'Basic <encoded-value>'}};
fetch('https://{region}.mixpanel.com/lookup-tables', 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://{region}.mixpanel.com/lookup-tables",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
CURLOPT_HTTPHEADER => [
"Authorization: Basic <encoded-value>"
],
]);
$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://{region}.mixpanel.com/lookup-tables"
req, _ := http.NewRequest("GET", url, nil)
req.Header.Add("Authorization", "Basic <encoded-value>")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.get("https://{region}.mixpanel.com/lookup-tables")
.header("Authorization", "Basic <encoded-value>")
.asString();require 'uri'
require 'net/http'
url = URI("https://{region}.mixpanel.com/lookup-tables")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Get.new(url)
request["Authorization"] = 'Basic <encoded-value>'
response = http.request(request)
puts response.read_body{
"code": 200,
"status": "OK",
"results": [
{
"id": "55b4fb2b-e8de-466c-930f-8b36640b9b5e",
"name": "Accounts"
},
{
"id": "1297297a-43a7-4cac-82b0-635d2bd88aac",
"name": "Product Catalog"
}
]
}{
"code": 401,
"error": "Invalid credentials",
"status": "Unauthorized"
}