Retrieves the title with the specified key.

Request Information

URI Parameters :

NameDescriptionTypeAdditional information
id

The title id.

globally unique identifier

Required

Body Parameters :

None.

Response Information

Resource Description :

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

db_title
NameDescriptionTypeAdditional information
id

Primary Key

globally unique identifier
name

Display name of this title, in the language identified by .

string
db_language_id

Foreign key of the language this title's is translated into.

globally unique identifier
language_iso_code

ISO code of the language identified by (denormalized copy).

string
modified_dateutc

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

date

Response Formats

application/json, text/json

Sample:
{
  "id": "e7271dc8-41a2-45f3-90c5-ac637d52cade",
  "name": "sample string 2",
  "db_language_id": "97591a92-c904-4a44-bda9-53da0c63bd9e",
  "language_iso_code": "sample string 4",
  "modified_dateutc": "2026-09-16T10:16:37.7037136+00:00"
}

application/xml, text/xml

Sample:
<db_title xmlns:i="http://www.w3.org/2001/XMLSchema-instance">
  <db_language_id>97591a92-c904-4a44-bda9-53da0c63bd9e</db_language_id>
  <id>e7271dc8-41a2-45f3-90c5-ac637d52cade</id>
  <language_iso_code>sample string 4</language_iso_code>
  <modified_dateutc>2026-09-16T10:16:37.703Z</modified_dateutc>
  <name>sample string 2</name>
</db_title>