GET api/WeatherConditions/{id}

Gets a particular weather condition.

Request Information

URI Parameters

NameDescriptionTypeAdditional information
id

The ID of the weather condition.

integer

Required

Body Parameters

None.

Response Information

Resource Description

The weather condition with the specified ID, or a 404 response if the weather condition doesn't exist.

WeatherCondition
NameDescriptionTypeAdditional information
ID

The ID of the record.

integer

None.

Name

The name of the weather condition.

string

None.

Response Formats

application/json, text/json

Sample:
{
  "ID": 1,
  "Name": "sample string 2"
}