Skip to content

List tables shared into a workspace (Teams)

GET
/v1/workspaces/{workspaceId}/shared-tables
curl --request GET \
--url https://shareout.site/v1/workspaces/example/shared-tables \
--header 'Authorization: Bearer <token>'

Any workspace member can list the shared-table catalog.

workspaceId
required
string

Shared tables in the workspace

Media type application/json
object
viewerRole
string
sharedTables
Array<object>
object
sharedName
string
access
string
Allowed values: read readwrite
ownerArtifactId
string
ownerName
string
sourceTable
string
Example
{
"sharedTables": [
{
"access": "read"
}
]
}

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
}