Retrieves all article translations, optionally filtered via OData query options.
Request Information
URI Parameters :
None.
Body Parameters :
None.
Response Information
Resource Description :
IHttpActionResult containing the list of article translations.
article_translate| Name | Description | Type | Additional information |
|---|---|---|---|
| id |
Primary Key |
globally unique identifier | |
| article_id |
Foreign key of the translated article. |
globally unique identifier | |
| db_language_id |
Foreign key of the language this translation is in. |
globally unique identifier | |
| name |
Translated name of the article. |
string | |
| description_short |
Translated short description of the article. |
string | |
| modified_dateutc |
Readonly system field managed by database, filled with GetUtcDate when adding,updating |
date |
Response Formats
application/json, text/json
Sample:
{
"id": "54eee42c-5d82-40a7-921a-b27f4a246870",
"article_id": "72ce7214-54c1-40f7-b2bb-c3d311423e45",
"db_language_id": "a6b471f7-4dff-4ed1-a147-f4542d127976",
"name": "sample string 4",
"description_short": "sample string 5",
"modified_dateutc": "2026-09-16T08:35:09.2999695+00:00"
}
application/xml, text/xml
Sample:
<article_translate xmlns:i="http://www.w3.org/2001/XMLSchema-instance"> <article_id>72ce7214-54c1-40f7-b2bb-c3d311423e45</article_id> <db_language_id>a6b471f7-4dff-4ed1-a147-f4542d127976</db_language_id> <description_short>sample string 5</description_short> <id>54eee42c-5d82-40a7-921a-b27f4a246870</id> <modified_dateutc>2026-09-16T08:35:09.299Z</modified_dateutc> <name>sample string 4</name> </article_translate>