> ## 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.

# Delete Shareable Link

> Delete a shareable link

## Overview

Deletes a shareable link, revoking access for anyone who had the link.

## Path Parameters

<ParamField path="entryId" type="integer" required>
  ID or hash of the file entry
</ParamField>

## Response

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

<RequestExample>
  ```bash cURL theme={null}
  curl -X DELETE https://app.drime.cloud/api/v1/file-entries/123456/shareable-link \
    -H "Authorization: Bearer YOUR_ACCESS_TOKEN"
  ```

  ```javascript JavaScript theme={null}
  const response = await fetch('https://app.drime.cloud/api/v1/file-entries/123456/shareable-link', {
    method: 'DELETE',
    headers: {
      'Authorization': 'Bearer YOUR_ACCESS_TOKEN'
    }
  });

  console.log('Link deleted');
  ```

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

  response = requests.delete(
      'https://app.drime.cloud/api/v1/file-entries/123456/shareable-link',
      headers={'Authorization': 'Bearer YOUR_ACCESS_TOKEN'}
  )

  print('Link deleted')
  ```
</RequestExample>

<ResponseExample>
  ```json 200 - Success theme={null}
  {
    "status": "success"
  }
  ```
</ResponseExample>

<Warning>
  Deleting a link immediately revokes access. Anyone with the old link will no longer be able to access the file.
</Warning>
