Secured Endpoint: POST /secured/share
This service can be used to share a user’s files and folders with other users, and with specific permissions for each user and resource.
Here’s an example:
$ curl -sH "$AUTH_HEADER" -d '
{
    "sharing": [
        {
            "user": "shared-with-user1",
            "paths": [
                {
                    "path": "/path/to/shared/file",
                    "permission": "write"
                },
                {
                    "path": "/path/to/shared/folder",
                    "permission": "read"
                }
            ]
        },
        {
            "user": "shared-with-user2",
            "paths": [
                {
                    "path": "/path/to/shared/file",
                    "permission": "own"
                },
                {
                    "path": "/path/to/shared/folder",
                    "permission": "own"
                }
            ]
        }
    ]
}
' "http://by-tor:8888/secured/share"
The service will respond with a success or failure message per user and resource:
{
    "sharing": [
        {
            "user": "shared-with-user1",
            "sharing": [
                {
                    "success": true,
                    "path": "/path/to/shared/file",
                    "permission": "write"
                },
                {
                    "success": false,
                    "error": {
                        "error_code": "ERR_DOES_NOT_EXIST",
                        "paths": [
                            "/path/to/shared/folder"
                        ]
                    },
                    "path": "/path/to/shared/folder",
                    "permission": "read"
                }
            ]
        },
        {
            "user": "shared-with-user2",
            "sharing": [
                {
                    "success": true,
                    "path": "/path/to/shared/file",
                    "permission": "own"
                },
                {
                    "success": false,
                    "error": {
                        "error_code": "ERR_DOES_NOT_EXIST",
                        "paths": [
                            "/path/to/shared/folder"
                        ]
                    },
                    "path": "/path/to/shared/folder",
                    "permission": "own"
                }
            ]
        }
    ]
}
Secured Endpoint: POST /secured/unshare
This service can be used to unshare a user’s files and folders with other users.
Here’s an example:
$ curl -sH "$AUTH_HEADER" -d '
{
    "unshare": [
        {
            "user": "shared-with-user1",
            "paths": [
                "/path/to/shared/file",
                "/path/to/shared/foo"
            ]
        },
        {
            "user": "shared-with-user2",
            "paths": [
                "/path/to/shared/file",
                "/path/to/shared/folder"
            ]
        }
    ]
}
' "http://by-tor:8888/secured/unshare"
The service will respond with a success or failure message per user:
{
    "unshare": [
        {
            "user": "shared-with-user1",
            "unshare": [
                {
                    "success": true,
                    "path": "/path/to/shared/file"
                },
                {
                    "success": false,
                    "error": {
                        "error_code": "ERR_DOES_NOT_EXIST",
                        "paths": [
                            "/path/to/shared/foo"
                        ]
                    },
                    "path": "/path/to/shared/foo"
                }
            ]
        },
        {
            "user": "shared-with-user2",
            "unshare": [
                {
                    "success": true,
                    "path": "/path/to/shared/file"
                },
                {
                    "success": true,
                    "path": "/path/to/shared/folder"
                }
            ]
        }
    ]
}