Get entities from Translations
GEThttps://api.elfsquad.io/data/1/Translations
Get entities from Translations
Request
Query Parameters
Possible values: >= 0
Show only the first n items
Possible values: >= 0
Skip the first n items
Search items by search phrases
Filter items by property values
Include count of items
Possible values: [originalValue
, originalValue desc
, languageIso
, languageIso desc
, translatedValue
, translatedValue desc
, translationType
, translationType desc
, id
, id desc
, createdDate
, createdDate desc
, updatedDate
, updatedDate desc
, organizationId
, organizationId desc
, reference
, reference desc
, creatorId
, creatorId desc
, customField1
, customField1 desc
, customField2
, customField2 desc
, customField3
, customField3 desc
, customField4
, customField4 desc
, customField5
, customField5 desc
]
Order items by property values
Possible values: [originalValue
, languageIso
, translatedValue
, translationType
, id
, createdDate
, updatedDate
, organizationId
, reference
, creatorId
, customField1
, customField2
, customField3
, customField4
, customField5
, organization
]
Select properties to be returned
Possible values: [*
, organization
]
Expand related entities
Responses
- 200
- default
Retrieved entities
- application/json
- Schema
- Example (auto)
Schema
value object[]
{
"value": [
{
"originalValue": "string",
"languageIso": "string",
"translatedValue": "string",
"translationType": {},
"id": "3fa85f64-5717-4562-b3fc-2c963f66afa6",
"createdDate": "2024-07-29T15:51:28.071Z",
"updatedDate": "2024-07-29T15:51:28.071Z",
"organizationId": "3fa85f64-5717-4562-b3fc-2c963f66afa6",
"reference": "string",
"creatorId": "3fa85f64-5717-4562-b3fc-2c963f66afa6",
"customField1": "string",
"customField2": "string",
"customField3": "string",
"customField4": "string",
"customField5": "string",
"organization": {}
}
]
}
error
- application/json
- Schema
- Example (auto)
Schema
error objectrequired
{
"error": {
"code": "string",
"message": "string",
"target": "string",
"details": [
{
"code": "string",
"message": "string",
"target": "string"
}
],
"innererror": {}
}
}
- csharp
- curl
- dart
- go
- http
- java
- javascript
- kotlin
- c
- nodejs
- objective-c
- ocaml
- php
- powershell
- python
- r
- ruby
- rust
- shell
- swift
- HTTPCLIENT
- RESTSHARP
var client = new HttpClient();
var request = new HttpRequestMessage(HttpMethod.Get, "https://api.elfsquad.io/data/1/Translations");
request.Headers.Add("Accept", "application/json");
var response = await client.SendAsync(request);
response.EnsureSuccessStatusCode();
Console.WriteLine(await response.Content.ReadAsStringAsync());