Multiple raindrops

In this page you will find how to retrieve, create, update or delete multiple raindrops at once.

Common parameters

To filter, sort or limit raindrops use one of the parameters described below. Check each method for exact list of supported parameters.

Get raindrops

GET https://api.raindrop.io/rest/v1/raindrops/{collectionId}

Path Parameters

Query Parameters

Create many raindrops

POST https://api.raindrop.io/rest/v1/raindrops

Request Body

{
    "result": true,
    "items": [
        {
            ...
        }
    ]
}

Update many raindrops

PUT https://api.raindrop.io/rest/v1/raindrops/{collectionId}

Specify optional search and/or ids parameters to limit raindrops that will be updated. Possible fields that could be updated are described in "Body Parameters"

Path Parameters

Request Body

Remove many raindrops

DELETE https://api.raindrop.io/rest/v1/raindrops/{collectionId}

Specify optional search and/or ids parameters to limit raindrops that will be moved to "Trash" When :collectionId is -99, raindrops will be permanently removed!

Path Parameters

Query Parameters

Request Body

{
    "result": true,
    "modified": 330
}

Last updated