action flat_get_score_collaborators { label: "List the collaborators" description: "This API call will list the different collaborators of a score and their rights on the document. The returned list will at least contain the owner of the document.\n\nCollaborators can be a single user (the object `user` will be populated) or a group (the object `group` will be populated).\n" provider: flat method: GET path: "/scores/{score}/collaborators" encoding: json input: { type: "object" properties: { sharingKey: { type: "string" } } additionalProperties: false } output: { type: "array" items: { description: "A collaborator of a score. The `userEmail` and `group` are only available if the requesting user is a collaborator of the related score (in this case these permissions will eventualy not be listed and exposed publicly).\n" type: "object" } } }