POST Api/Scheduler/AggregatedDataJobInsert
Request Information
URI Parameters
None.
Body Parameters
SchedulerJobRequestModel| Name | Description | Type | Additional information |
|---|---|---|---|
| ShopId | string |
None. |
|
| RecordDate | date |
None. |
Request Formats
application/json, text/json
Sample:
{
"ShopId": "sample string 1",
"RecordDate": "2025-12-14T08:06:56.1842238+01:00"
}
application/xml, text/xml
Sample:
<SchedulerJobRequestModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/HotSteel.Service.Web.Models"> <RecordDate>2025-12-14T08:06:56.1842238+01:00</RecordDate> <ShopId>sample string 1</ShopId> </SchedulerJobRequestModel>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
SchedulerJob| Name | Description | Type | Additional information |
|---|---|---|---|
| JobId | globally unique identifier |
None. |
|
| ProcessId | string |
None. |
|
| Date | date |
None. |
|
| Datetime | date |
None. |
|
| ParameterShopId | string |
None. |
|
| ParameterRecordDate | date |
None. |
|
| JobStateId | string |
None. |
|
| DateStart | date |
None. |
|
| DateEnd | date |
None. |
|
| AffectedRows | integer |
None. |
|
| ResultMessage | string |
None. |
Response Formats
application/json, text/json
Sample:
{
"JobId": "cf5bfca4-ec55-4492-84ad-5f3a44e953a8",
"ProcessId": "sample string 2",
"Date": "2025-12-14T08:06:56.1842238+01:00",
"Datetime": "2025-12-14T08:06:56.1842238+01:00",
"ParameterShopId": "sample string 5",
"ParameterRecordDate": "2025-12-14T08:06:56.1842238+01:00",
"JobStateId": "sample string 7",
"DateStart": "2025-12-14T08:06:56.1842238+01:00",
"DateEnd": "2025-12-14T08:06:56.1842238+01:00",
"AffectedRows": 1,
"ResultMessage": "sample string 8"
}
application/xml, text/xml
Sample:
<SchedulerJob xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/HotSteel.Data.Models.Intranet"> <AffectedRows>1</AffectedRows> <Date>2025-12-14T08:06:56.1842238+01:00</Date> <DateEnd>2025-12-14T08:06:56.1842238+01:00</DateEnd> <DateStart>2025-12-14T08:06:56.1842238+01:00</DateStart> <Datetime>2025-12-14T08:06:56.1842238+01:00</Datetime> <JobId>cf5bfca4-ec55-4492-84ad-5f3a44e953a8</JobId> <JobStateId>sample string 7</JobStateId> <ParameterRecordDate>2025-12-14T08:06:56.1842238+01:00</ParameterRecordDate> <ParameterShopId>sample string 5</ParameterShopId> <ProcessId>sample string 2</ProcessId> <ResultMessage>sample string 8</ResultMessage> </SchedulerJob>