GET api/Info/GetLastVersionAndroid?name={name}

Получение актуальной версии Андроида

Request Information

URI Parameters

NameDescriptionTypeAdditional information
name

Название параметра

string

Required

Body Parameters

None.

Response Information

Resource Description

Возвращает модель Property

Property
NameDescriptionTypeAdditional information
id

integer

None.

name

string

None.

value

string

None.

created

date

None.

Response Formats

application/json, text/json

Sample:
{
  "id": 1,
  "name": "sample string 2",
  "value": "sample string 3",
  "created": "2025-09-02T23:25:53.2219171+00:00"
}

application/xml, text/xml

Sample:
<Property xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Data.Models.db">
  <created>2025-09-02T23:25:53.2219171+00:00</created>
  <id>1</id>
  <name>sample string 2</name>
  <value>sample string 3</value>
</Property>