Languages
Methods description
The list method allows you to get a list of the languages
Request:
{site_path}/{lang}/api/language/list
GET parameters list:
filter | array | Allows filtering data by all available fields |
fields | string | Allows to select only the specified fields from all available |
sort | string | Allows you to sort asc and desc entities by all available fields |
page | int | Allows you to pass the page number of the list of entities |
List of all available fields
id | int | ID of the operating system |
name | string | Operating system name |
c2 | string | Languages codes |
Response
The response is transmitted in JSON format. List of response fields:
result | array | List of languages based on query parameters |
_links | array | List of navigation links. May contain the following elements:
|
_meta | array | Information on list navigation. Contains elements:
|
Request example:
{site_path}/{lang}/api/language/list?filter[id][in][]=42&filter[id][in][]=51&sort=name
Response example:
{ "result": [ { "id": 42, "c2": "ru", "name": "Russian" }, { "id": 51, "c2": "uk", "name": "Ukrainian" } ], "_links": { "self": { "href": "{site_path}/{lang}/api/language/list?filter%5Bid%5D%5Bin%5D%5B0%5D=42&filter%5Bid%5D%5Bin%5D%5B1%5D=51&sort=name&page=1" } }, "_meta": { "totalCount": 2, "pageCount": 1, "currentPage": 1, "perPage": 20 } }