GET api/WeatherType?UpdatedAt={UpdatedAt}

Request Information

URI Parameters

NameDescriptionTypeAdditional information
UpdatedAt

date

None.

Body Parameters

None.

Response Information

Resource Description

Collection of WeatherType
NameDescriptionTypeAdditional information
Type

string

None.

Id

integer

None.

UpdatedAt

date

None.

MajorVersion

integer

None.

MinorVersion

integer

None.

Response Formats

application/json, text/json

Sample:
[
  {
    "Type": "sample string 1",
    "Id": 2,
    "UpdatedAt": "2025-11-08T12:08:43.6453513Z",
    "MajorVersion": 1,
    "MinorVersion": 1
  },
  {
    "Type": "sample string 1",
    "Id": 2,
    "UpdatedAt": "2025-11-08T12:08:43.6453513Z",
    "MajorVersion": 1,
    "MinorVersion": 1
  }
]

application/xml, text/xml

Sample:
<ArrayOfWeatherType xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/API.Models.Api.DataModels">
  <WeatherType>
    <MajorVersion>1</MajorVersion>
    <MinorVersion>1</MinorVersion>
    <UpdatedAt>2025-11-08T12:08:43.6453513Z</UpdatedAt>
    <Id>2</Id>
    <Type>sample string 1</Type>
  </WeatherType>
  <WeatherType>
    <MajorVersion>1</MajorVersion>
    <MinorVersion>1</MinorVersion>
    <UpdatedAt>2025-11-08T12:08:43.6453513Z</UpdatedAt>
    <Id>2</Id>
    <Type>sample string 1</Type>
  </WeatherType>
</ArrayOfWeatherType>