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

Overview

Removes the starred status from one or more file entries.

Request Body

entryIds
array
required
Array of entry IDs to unstar

Response

tag
object
The “starred” tag object
status
string
Request status (success)
curl -X POST https://app.drime.cloud/api/v1/file-entries/unstar \
  -H "Authorization: Bearer YOUR_ACCESS_TOKEN" \
  -H "Content-Type: application/json" \
  -d '{
    "entryIds": [123456, 789012]
  }'
{
  "status": "success",
  "tag": {
    "id": 1,
    "name": "starred"
  }
}