Creates or updates a file/tag link.

Request Information

URI Parameters :

None.

Body Parameters :

db_file_tag_list
NameDescriptionTypeAdditional information
id

Primary key

globally unique identifier

Required

db_file_id

Foreign key of the tagged file.

globally unique identifier
db_file_tag_id

Foreign key of the applied tag.

globally unique identifier
modified_dateutc

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

date

Request Formats :

application/json, text/json

Sample:
{
  "id": "9a50ff6f-8d1f-49e0-ad36-705ec0ae4086",
  "db_file_id": "86b761d2-d604-4ec5-87ac-80f5144fc553",
  "db_file_tag_id": "c973db7e-8eec-42ea-89b9-d3bfb76f11e6",
  "modified_dateutc": "2026-09-16T09:22:10.6613982+00:00"
}

application/xml, text/xml

Sample:
<db_file_tag_list xmlns:i="http://www.w3.org/2001/XMLSchema-instance">
  <db_file_id>86b761d2-d604-4ec5-87ac-80f5144fc553</db_file_id>
  <db_file_tag_id>c973db7e-8eec-42ea-89b9-d3bfb76f11e6</db_file_tag_id>
  <id>9a50ff6f-8d1f-49e0-ad36-705ec0ae4086</id>
  <modified_dateutc>2026-09-16T09:22:10.661Z</modified_dateutc>
</db_file_tag_list>

Response Information

Resource Description :

IHttpActionResult containing the saved file/tag link.

db_file_tag_list
NameDescriptionTypeAdditional information
id

Primary key

globally unique identifier

Required

db_file_id

Foreign key of the tagged file.

globally unique identifier
db_file_tag_id

Foreign key of the applied tag.

globally unique identifier
modified_dateutc

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

date

Response Formats

application/json, text/json

Sample:
{
  "id": "417f7d83-55cc-400e-a592-7fdd8bb86ddc",
  "db_file_id": "92944941-5e2c-49f6-bde1-400df89098fe",
  "db_file_tag_id": "40d2ffc3-d816-455e-92a0-19ba48234b18",
  "modified_dateutc": "2026-09-16T09:22:10.6895972+00:00"
}

application/xml, text/xml

Sample:
<db_file_tag_list xmlns:i="http://www.w3.org/2001/XMLSchema-instance">
  <db_file_id>92944941-5e2c-49f6-bde1-400df89098fe</db_file_id>
  <db_file_tag_id>40d2ffc3-d816-455e-92a0-19ba48234b18</db_file_tag_id>
  <id>417f7d83-55cc-400e-a592-7fdd8bb86ddc</id>
  <modified_dateutc>2026-09-16T09:22:10.689Z</modified_dateutc>
</db_file_tag_list>