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": "37cf1a16-e2bc-4cd0-91e4-d3f67ce40fd6",
"db_table_id": "9f16ffca-2aff-4554-8412-febc0fc7e9ce",
"db_column_id": "8724906f-61e0-4ee1-abee-5b0e6c8a45ad",
"id_in_table": "4cb21eb3-c6cc-46af-869c-3e69bbb0869d",
"db_language_id": "89cb1fb5-e337-4296-b7f6-e25e294513ae",
"value": "sample string 6",
"modified_dateutc": "2026-03-07T14:56:19.698976+00:00"
}
application/xml, text/xml
Sample:
<db_translate xmlns:i="http://www.w3.org/2001/XMLSchema-instance"> <db_column_id>8724906f-61e0-4ee1-abee-5b0e6c8a45ad</db_column_id> <db_language_id>89cb1fb5-e337-4296-b7f6-e25e294513ae</db_language_id> <db_table_id>9f16ffca-2aff-4554-8412-febc0fc7e9ce</db_table_id> <id>37cf1a16-e2bc-4cd0-91e4-d3f67ce40fd6</id> <id_in_table>4cb21eb3-c6cc-46af-869c-3e69bbb0869d</id_in_table> <modified_dateutc>2026-03-07T14:56:19.698Z</modified_dateutc> <value>sample string 6</value> </db_translate>