shareCollection
Share a Raindrop.io collection by specifying emails, access level (view, edit, remove), and collection ID to enable collaborative bookmark management.
Instructions
Share a collection with others
Input Schema
Name | Required | Description | Default |
---|---|---|---|
emails | No | Email addresses to share with | |
id | Yes | Collection ID | |
level | Yes | Access level |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"emails": {
"description": "Email addresses to share with",
"items": {
"format": "email",
"type": "string"
},
"type": "array"
},
"id": {
"description": "Collection ID",
"type": "number"
},
"level": {
"description": "Access level",
"enum": [
"view",
"edit",
"remove"
],
"type": "string"
}
},
"required": [
"id",
"level"
],
"type": "object"
}