> ## Documentation Index
> Fetch the complete documentation index at: https://docs.drime.cloud/llms.txt
> Use this file to discover all available pages before exploring further.

# Unstar Entries

> Remove star/favorite from entries

## Overview

Removes the starred status from one or more file entries.

## Request Body

<ParamField body="entryIds" type="array" required>
  Array of entry IDs to unstar
</ParamField>

## Response

<ResponseField name="tag" type="object">
  The "starred" tag object
</ResponseField>

<ResponseField name="status" type="string">
  Request status (`success`)
</ResponseField>

<RequestExample>
  ```bash cURL theme={null}
  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]
    }'
  ```

  ```javascript JavaScript theme={null}
  const response = await fetch('https://app.drime.cloud/api/v1/file-entries/unstar', {
    method: 'POST',
    headers: {
      'Authorization': 'Bearer YOUR_ACCESS_TOKEN',
      'Content-Type': 'application/json'
    },
    body: JSON.stringify({
      entryIds: [123456, 789012]
    })
  });

  console.log('Entries unstarred');
  ```

  ```python Python theme={null}
  import requests

  response = requests.post(
      'https://app.drime.cloud/api/v1/file-entries/unstar',
      headers={'Authorization': 'Bearer YOUR_ACCESS_TOKEN'},
      json={'entryIds': [123456, 789012]}
  )

  print('Entries unstarred')
  ```
</RequestExample>

<ResponseExample>
  ```json 200 - Success theme={null}
  {
    "status": "success",
    "tag": {
      "id": 1,
      "name": "starred"
    }
  }
  ```
</ResponseExample>
