Skip to main content
GET
/
file-entry-tags
curl "https://app.drime.cloud/api/v1/file-entry-tags?query=project" \
  -H "Authorization: Bearer YOUR_ACCESS_TOKEN"
{
  "tags": [
    {
      "id": 1,
      "name": "project-alpha"
    },
    {
      "id": 2,
      "name": "project-beta"
    },
    {
      "id": 3,
      "name": "starred"
    }
  ]
}

Overview

Returns tags that can be applied to file entries, optionally filtered by a search query. Useful for autocomplete functionality.

Query Parameters

query
string
Search query to filter tags

Response

tags
array
Array of tag objects
curl "https://app.drime.cloud/api/v1/file-entry-tags?query=project" \
  -H "Authorization: Bearer YOUR_ACCESS_TOKEN"
{
  "tags": [
    {
      "id": 1,
      "name": "project-alpha"
    },
    {
      "id": 2,
      "name": "project-beta"
    },
    {
      "id": 3,
      "name": "starred"
    }
  ]
}