List tables
GET
/v1/data/{artifactId}/tables
const url = 'https://shareout.site/v1/data/example/tables';const options = {method: 'GET', headers: {Authorization: 'Bearer <token>'}};
try { const response = await fetch(url, options); const data = await response.json(); console.log(data);} catch (error) { console.error(error);}curl --request GET \ --url https://shareout.site/v1/data/example/tables \ --header 'Authorization: Bearer <token>'Authorizations
Section titled “Authorizations ”Parameters
Section titled “ Parameters ”Path Parameters
Section titled “Path Parameters ” artifactId
required
string
Artifact ID (e.g. art_abc123).
Responses
Section titled “ Responses ”Tables for the artifact
Media type application/json
object
tables
Array<string>
Example generated
{ "tables": [ "example" ]}