POST api/Nibe/AddNibeWeather
Request Information
URI Parameters
None.
Body Parameters
FighterDTO| Name | Description | Type | Additional information |
|---|---|---|---|
| PumpValue | decimal number |
None. |
|
| SettingCurve | decimal number |
None. |
|
| SettingOffsetDegree | integer |
None. |
|
| FlowTemp | integer |
None. |
|
| OutTemp | decimal number |
None. |
|
| InTemp | decimal number |
None. |
|
| Kilowatt | integer |
None. |
|
| RegTime | string |
None. |
|
| Comments | string |
None. |
|
| RegDate | date |
None. |
|
| Wind | string |
None. |
|
| Weather | string |
None. |
Request Formats
application/json, text/json
Sample:
{
"PumpValue": 1.0,
"SettingCurve": 1.0,
"SettingOffsetDegree": 1,
"FlowTemp": 1,
"OutTemp": 1.0,
"InTemp": 1.0,
"Kilowatt": 1,
"RegTime": "sample string 1",
"Comments": "sample string 2",
"RegDate": "2026-02-06T10:50:55.8085444+01:00",
"Wind": "sample string 3",
"Weather": "sample string 4"
}
application/xml, text/xml
Sample:
<FighterDTO xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/NibeWebApi.MainBoundedContext.DTO"> <Comments>sample string 2</Comments> <FlowTemp>1</FlowTemp> <InTemp>1</InTemp> <Kilowatt>1</Kilowatt> <OutTemp>1</OutTemp> <PumpValue>1</PumpValue> <RegDate>2026-02-06T10:50:55.8085444+01:00</RegDate> <RegTime>sample string 1</RegTime> <SettingCurve>1</SettingCurve> <SettingOffsetDegree>1</SettingOffsetDegree> <Weather>sample string 4</Weather> <Wind>sample string 3</Wind> </FighterDTO>
application/x-www-form-urlencoded
Sample:
Response Information
Resource Description
HttpResponseMessage| Name | Description | Type | Additional information |
|---|---|---|---|
| Version | Version |
None. |
|
| Content | HttpContent |
None. |
|
| StatusCode | HttpStatusCode |
None. |
|
| ReasonPhrase | string |
None. |
|
| Headers | Collection of Object |
None. |
|
| RequestMessage | HttpRequestMessage |
None. |
|
| IsSuccessStatusCode | boolean |
None. |