POST api/BillingDetails/GetDailyForecast
Request Information
URI Parameters
None.
Body Parameters
ForecastRQ| Name | Description | Type | Additional information |
|---|---|---|---|
| CompanyID | integer |
None. |
|
| ESIID | string |
None. |
|
| BSCustomerID | string |
None. |
Request Formats
application/json, text/json
Sample:
{
"CompanyID": 1,
"ESIID": "sample string 2",
"BSCustomerID": "sample string 3"
}
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
DailyForecastRS| Name | Description | Type | Additional information |
|---|---|---|---|
| ResponseCode | string |
None. |
|
| ResponseMessage | string |
None. |
|
| ServiceDay | Collection of string |
None. |
|
| Usage | Collection of decimal number |
None. |
|
| Cost | Collection of decimal number |
None. |
|
| IsDefault | Collection of boolean |
None. |
|
| UOM | string |
None. |
Response Formats
application/json, text/json
Sample:
{
"ResponseCode": "sample string 1",
"ResponseMessage": "sample string 2",
"ServiceDay": [
"sample string 1",
"sample string 2"
],
"Usage": [
1.1,
2.1
],
"Cost": [
1.1,
2.1
],
"IsDefault": [
true,
true
],
"UOM": "sample string 3"
}