Skip to content

List collaborators

GET
/v1/artifacts/{id}/collaborators
curl --request GET \
--url https://shareout.site/v1/artifacts/example/collaborators \
--header 'Authorization: Bearer <token>'
id
required
string

Artifact ID (e.g. art_abc123).

Collaborators

Media type application/json
object
collaborators
Array<object>
object
email
string format: email
role
string
Allowed values: owner editor viewer
Example
{
"collaborators": [
{
"role": "owner"
}
]
}