Retrieves the translation with the specified key.
Request Information
URI Parameters :
| Name | Description | Type | Additional information |
|---|---|---|---|
| id |
The translation id. |
globally unique identifier |
Required |
Body Parameters :
None.
Response Information
Resource Description :
IHttpActionResult containing the translation, or 404 Not Found if it doesn't exist.
db_translate| Name | Description | Type | Additional information |
|---|---|---|---|
| id |
Primary Key |
globally unique identifier | |
| db_table_id |
Identifier of the database table that belongs to. |
globally unique identifier | |
| db_column_id |
Identifier of the column on the target table whose value this translation is for. |
globally unique identifier | |
| id_in_table |
Primary key of the translated record in the table identified by . |
globally unique identifier | |
| db_language_id |
Foreign key of the language this translation is in. |
globally unique identifier | |
| value |
Translated value of the target column, in the language identified by . |
string | |
| modified_dateutc |
Readonly system field managed by database, filled with GetUtcDate when adding,updating |
date |
Response Formats
application/json, text/json
Sample:
{
"id": "6e1f7fa5-8ad6-4410-8475-d4034599e52a",
"db_table_id": "2113c11f-8dde-4d30-845c-5f13079134e7",
"db_column_id": "3b7a3f35-8f5a-4178-b6f3-03bec6786a26",
"id_in_table": "4f511d3a-ad43-4ed0-accd-7bd8d552b135",
"db_language_id": "dea0832c-1cc9-47ed-9900-213733d0c2e4",
"value": "sample string 6",
"modified_dateutc": "2026-09-16T09:24:35.6096014+00:00"
}
application/xml, text/xml
Sample:
<db_translate xmlns:i="http://www.w3.org/2001/XMLSchema-instance"> <db_column_id>3b7a3f35-8f5a-4178-b6f3-03bec6786a26</db_column_id> <db_language_id>dea0832c-1cc9-47ed-9900-213733d0c2e4</db_language_id> <db_table_id>2113c11f-8dde-4d30-845c-5f13079134e7</db_table_id> <id>6e1f7fa5-8ad6-4410-8475-d4034599e52a</id> <id_in_table>4f511d3a-ad43-4ed0-accd-7bd8d552b135</id_in_table> <modified_dateutc>2026-09-16T09:24:35.609Z</modified_dateutc> <value>sample string 6</value> </db_translate>