GET api/EnvironmentWindDetail/{Code}
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| Code | string |
Required |
Body Parameters
None.
Response Information
Resource Description
Collection of Environment_WindDetailNoise| Name | Description | Type | Additional information |
|---|---|---|---|
| SensorID | string |
None. |
|
| RecordTime | date |
None. |
|
| WindSpeed | decimal number |
None. |
|
| WindDirection | decimal number |
None. |
|
| WindGustSpeed | decimal number |
None. |
|
| WindGustDirection | decimal number |
None. |
Response Formats
application/json, text/json
Sample:
[
{
"SensorID": "sample string 1",
"RecordTime": "2025-11-23T18:05:34.5259818+00:00",
"WindSpeed": 3.1,
"WindDirection": 4.1,
"WindGustSpeed": 5.1,
"WindGustDirection": 6.1
},
{
"SensorID": "sample string 1",
"RecordTime": "2025-11-23T18:05:34.5259818+00:00",
"WindSpeed": 3.1,
"WindDirection": 4.1,
"WindGustSpeed": 5.1,
"WindGustDirection": 6.1
}
]
application/xml, text/xml
Sample:
<ArrayOfEnvironment_WindDetailNoise xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Dashboard.Models">
<Environment_WindDetailNoise>
<RecordTime>2025-11-23T18:05:34.5259818+00:00</RecordTime>
<SensorID>sample string 1</SensorID>
<WindDirection>4.1</WindDirection>
<WindGustDirection>6.1</WindGustDirection>
<WindGustSpeed>5.1</WindGustSpeed>
<WindSpeed>3.1</WindSpeed>
</Environment_WindDetailNoise>
<Environment_WindDetailNoise>
<RecordTime>2025-11-23T18:05:34.5259818+00:00</RecordTime>
<SensorID>sample string 1</SensorID>
<WindDirection>4.1</WindDirection>
<WindGustDirection>6.1</WindGustDirection>
<WindGustSpeed>5.1</WindGustSpeed>
<WindSpeed>3.1</WindSpeed>
</Environment_WindDetailNoise>
</ArrayOfEnvironment_WindDetailNoise>