Retrieves the db_translate with the specified key
Request Information
URI Parameters :
| Name | Description | Type | Additional information |
|---|---|---|---|
| id | globally unique identifier |
Required |
Body Parameters :
None.
Response Information
Resource Description :
IHttpActionResult
db_translate| Name | Description | Type | Additional information |
|---|---|---|---|
| id |
Primary Key |
globally unique identifier | |
| db_table_id | globally unique identifier | ||
| db_column_id | globally unique identifier | ||
| id_in_table | globally unique identifier | ||
| db_language_id | globally unique identifier | ||
| value | string | ||
| modified_dateutc |
Readonly system field managed by database, filled with GetUtcDate when adding,updating |
date |
Response Formats
application/json, text/json
Sample:
{
"id": "14ecfd01-b03a-48ff-8227-201f87c9f37e",
"db_table_id": "88e3c292-d2f2-4e3c-b6f5-90570b29d281",
"db_column_id": "1ffcbd15-94ed-4529-b981-fc1b83c4a8bd",
"id_in_table": "3eb7a124-9012-4957-a298-d27a49476bac",
"db_language_id": "2834554f-edcb-4ad9-a81f-fdd1b406fe97",
"value": "sample string 6",
"modified_dateutc": "2026-06-16T21:22:58.7790857+00:00"
}
application/xml, text/xml
Sample:
<db_translate xmlns:i="http://www.w3.org/2001/XMLSchema-instance"> <db_column_id>1ffcbd15-94ed-4529-b981-fc1b83c4a8bd</db_column_id> <db_language_id>2834554f-edcb-4ad9-a81f-fdd1b406fe97</db_language_id> <db_table_id>88e3c292-d2f2-4e3c-b6f5-90570b29d281</db_table_id> <id>14ecfd01-b03a-48ff-8227-201f87c9f37e</id> <id_in_table>3eb7a124-9012-4957-a298-d27a49476bac</id_in_table> <modified_dateutc>2026-06-16T21:22:58.779Z</modified_dateutc> <value>sample string 6</value> </db_translate>