Share one of this artifact's tables with the workspace (Teams)
POST
/v1/data/{artifactId}/workspace/_share
const url = 'https://shareout.site/v1/data/example/workspace/_share';const options = { method: 'POST', headers: {Authorization: 'Bearer <token>', 'Content-Type': 'application/json'}, body: '{"table":"example","as":"example","access":"read"}'};
try { const response = await fetch(url, options); const data = await response.json(); console.log(data);} catch (error) { console.error(error);}curl --request POST \ --url https://shareout.site/v1/data/example/workspace/_share \ --header 'Authorization: Bearer <token>' \ --header 'Content-Type: application/json' \ --data '{ "table": "example", "as": "example", "access": "read" }'Owner-only. Exposes one of this artifact’s tables to other artifacts in the same workspace at read or readwrite level. The data stays in this artifact’s store; this only records an opt-in grant.
Authorizations
Section titled “Authorizations ”Parameters
Section titled “ Parameters ”Path Parameters
Section titled “Path Parameters ” artifactId
required
string
Artifact ID (e.g. art_abc123).
Request Body required
Section titled “Request Body required ” Media type application/json
object
table
required
Name of this artifact’s table to share.
string
as
Workspace-unique shared name (defaults to the table name).
string
access
string
Responses
Section titled “ Responses ”Share created or updated
Access denied
Media type application/json
object
success
required
boolean
error
required
Human-readable message.
string
code
required
Machine-readable error code.
string
Example
{ "success": false}