Retrieves the file tag with the specified key.

Request Information

URI Parameters :

NameDescriptionTypeAdditional information
id

The file tag id.

globally unique identifier

Required

Body Parameters :

None.

Response Information

Resource Description :

IHttpActionResult containing the file tag, or 404 Not Found if it doesn't exist.

db_file_tag
NameDescriptionTypeAdditional information
id

Primary key

globally unique identifier

Required

name

the tag value like 'Broken' or 'Important'

string
modified_dateutc

Readonly system field managed by database, filled with GetUtcDate when adding,updating

date

Response Formats

application/json, text/json

Sample:
{
  "id": "8b71fdd6-dfd5-4f16-aa13-2e2fbec8128e",
  "name": "sample string 2",
  "modified_dateutc": "2026-09-16T08:34:29.9423072+00:00"
}

application/xml, text/xml

Sample:
<db_file_tag xmlns:i="http://www.w3.org/2001/XMLSchema-instance">
  <id>8b71fdd6-dfd5-4f16-aa13-2e2fbec8128e</id>
  <modified_dateutc>2026-09-16T08:34:29.942Z</modified_dateutc>
  <name>sample string 2</name>
</db_file_tag>