Symlinks/Shortcuts

Symbolic links or Shortcuts provide a versatile and easy way to work with directories in multiple locations. A symlink/shortcut can point to any folder in the Couchdrop virtual file system.

Managing symbolic links can be done through the admin interface or via the API.

GET https://api.couchdrop.io/manage/symlinks

{
    result: [
        {"source": "/link", "destination":"/dropbox/folder1", "id":"id1"},
        {"source": "/link2", "destination":"/dropbox/folder2", "id":"id2"}
    ]
}

PUT https://api.couchdrop.io/manage/symlinks

{
    "result":{
        "id": "id1"
    }
}

POST https://api.couchdrop.io/manage/symlinks

Request Body

DELETE https://api.couchdrop.io/manage/symlinks/<link_id>

Path Parameters

Last updated