List collaborators
GET
/v1/artifacts/{id}/collaborators
const url = 'https://shareout.site/v1/artifacts/example/collaborators';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/artifacts/example/collaborators \ --header 'Authorization: Bearer <token>'Authorizations
Section titled “Authorizations ”Parameters
Section titled “ Parameters ”Path Parameters
Section titled “Path Parameters ” id
required
string
Artifact ID (e.g. art_abc123).
Responses
Section titled “ Responses ”Collaborators
Media type application/json
object
collaborators
Array<object>
object
email
string format: email
role
string
Example
{ "collaborators": [ { "role": "owner" } ]}