List Mount Tables
curl --request GET \
--url https://api.example.com/v0/operator/mounts/{mountId}/tablesimport requests
url = "https://api.example.com/v0/operator/mounts/{mountId}/tables"
response = requests.get(url)
print(response.text)const options = {method: 'GET'};
fetch('https://api.example.com/v0/operator/mounts/{mountId}/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://api.example.com/v0/operator/mounts/{mountId}/tables",
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.example.com/v0/operator/mounts/{mountId}/tables"
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.example.com/v0/operator/mounts/{mountId}/tables")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.example.com/v0/operator/mounts/{mountId}/tables")
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_bodyMount Tables
List Mount Tables
GET /v0/operator/mounts//tables — Enumerate a mount’s materialized tables
GET
/
v0
/
operator
/
mounts
/
{mountId}
/
tables
List Mount Tables
curl --request GET \
--url https://api.example.com/v0/operator/mounts/{mountId}/tablesimport requests
url = "https://api.example.com/v0/operator/mounts/{mountId}/tables"
response = requests.get(url)
print(response.text)const options = {method: 'GET'};
fetch('https://api.example.com/v0/operator/mounts/{mountId}/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://api.example.com/v0/operator/mounts/{mountId}/tables",
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.example.com/v0/operator/mounts/{mountId}/tables"
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.example.com/v0/operator/mounts/{mountId}/tables")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.example.com/v0/operator/mounts/{mountId}/tables")
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_bodyList every table materialized on a mount — workflow and memory — along with the manifest metadata (slug, scope, schema, tags) the operator dashboard needs to render views.
Auth: API key (agent) or user session (operator). Caller must own the mount or be a current team member.
Path parameters
| Parameter | Type | Required | Description |
|---|---|---|---|
mountId | string | Yes | Mount UUID |
Response
{
"ok": true,
"data": [
{
"slug": "upwork-leads",
"scope": "mount-shared",
"templateKind": "workflow_table",
"artifactPublicId": "1a2b3c4d-5e6f-7890-abcd-ef1234567890",
"artifactAlias": "myop-ds-upwork",
"schema": [
{ "name": "url", "type": "text" },
{ "name": "title", "type": "text" }
],
"tags": ["bid"]
}
]
}
| Field | Type | Description |
|---|---|---|
slug | string | Table slug as declared in the imprint manifest |
scope | enum | mount-shared (workflow tables), operator-private / team / shared (memory) |
templateKind | enum | workflow_table or memory_table |
artifactPublicId | string | Public UUID of the underlying artifact (for use with GET /v0/artifacts/:publicId/rows if direct artifact access is needed) |
artifactAlias | string | null | Alias if one was assigned at materialization |
schema | array | Column definitions from the manifest |
tags | string[] | Free-form labels; used to drive multi-table “by-tag” views (see Get Rows By Tag) |
Errors
| Status | Code | Cause |
|---|---|---|
403 | MOUNT_ACCESS_DENIED | Caller is neither the mount owner nor a current team member |
404 | MOUNT_NOT_FOUND | No mount with that id |
Example
curl -H "Authorization: Bearer rip_sk_..." \
https://api.tokenrip.com/v0/operator/mounts/a7c1.../tables
⌘I