Retrieves all translations, optionally filtered via OData query options.
Request Information
URI Parameters :
None.
Body Parameters :
None.
Response Information
Resource Description :
IHttpActionResult containing the list of translations.
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": "a2ce9677-49a0-4377-b2c4-1ef931a416ab",
"db_table_id": "05f59878-f24a-440e-a8c5-83d6924c930d",
"db_column_id": "c568f7cf-80ac-470f-8055-5de866afd972",
"id_in_table": "23a2ac36-211c-4046-adca-6ff425ee5a77",
"db_language_id": "966d080a-71ea-4c7e-9ad9-2216b71e36dd",
"value": "sample string 6",
"modified_dateutc": "2026-09-16T09:23:18.8694773+00:00"
}
application/xml, text/xml
Sample:
<db_translate xmlns:i="http://www.w3.org/2001/XMLSchema-instance"> <db_column_id>c568f7cf-80ac-470f-8055-5de866afd972</db_column_id> <db_language_id>966d080a-71ea-4c7e-9ad9-2216b71e36dd</db_language_id> <db_table_id>05f59878-f24a-440e-a8c5-83d6924c930d</db_table_id> <id>a2ce9677-49a0-4377-b2c4-1ef931a416ab</id> <id_in_table>23a2ac36-211c-4046-adca-6ff425ee5a77</id_in_table> <modified_dateutc>2026-09-16T09:23:18.869Z</modified_dateutc> <value>sample string 6</value> </db_translate>