Skip to main content
POST
/
file-entries
/
star
curl -X POST https://app.drime.cloud/api/v1/file-entries/star \
  -H "Authorization: Bearer YOUR_ACCESS_TOKEN" \
  -H "Content-Type: application/json" \
  -d '{
    "entryIds": [123456, 789012]
  }'
{
  "status": "success",
  "tag": {
    "id": 1,
    "name": "starred"
  }
}

Overview

Marks one or more file entries as starred (favorites) for quick access.

Request Body

entryIds
array
required
Array of entry IDs to star

Response

tag
object
The “starred” tag object
status
string
Request status (success)
curl -X POST https://app.drime.cloud/api/v1/file-entries/star \
  -H "Authorization: Bearer YOUR_ACCESS_TOKEN" \
  -H "Content-Type: application/json" \
  -d '{
    "entryIds": [123456, 789012]
  }'
{
  "status": "success",
  "tag": {
    "id": 1,
    "name": "starred"
  }
}
Use starredOnly=true in the Get File Entries endpoint to retrieve all starred items.