POST Api/Scheduler/JobDelete

Request Information

URI Parameters

None.

Body Parameters

JobDeleteRequestModel
NameDescriptionTypeAdditional information
JobId

string

None.

Request Formats

application/json, text/json

Sample:
{
  "JobId": "sample string 1"
}

application/xml, text/xml

Sample:
<JobDeleteRequestModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/HotSteel.Service.Web.Models">
  <JobId>sample string 1</JobId>
</JobDeleteRequestModel>

application/x-www-form-urlencoded

Sample:

Sample not available.

Response Information

Resource Description

SchedulerJob
NameDescriptionTypeAdditional 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": "9ca3ad5b-5513-4e46-959b-93a29085030f",
  "ProcessId": "sample string 2",
  "Date": "2025-08-02T15:23:43.0197204+02:00",
  "Datetime": "2025-08-02T15:23:43.0197204+02:00",
  "ParameterShopId": "sample string 5",
  "ParameterRecordDate": "2025-08-02T15:23:43.0197204+02:00",
  "JobStateId": "sample string 7",
  "DateStart": "2025-08-02T15:23:43.0197204+02:00",
  "DateEnd": "2025-08-02T15:23:43.0197204+02: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-08-02T15:23:43.0197204+02:00</Date>
  <DateEnd>2025-08-02T15:23:43.0197204+02:00</DateEnd>
  <DateStart>2025-08-02T15:23:43.0197204+02:00</DateStart>
  <Datetime>2025-08-02T15:23:43.0197204+02:00</Datetime>
  <JobId>9ca3ad5b-5513-4e46-959b-93a29085030f</JobId>
  <JobStateId>sample string 7</JobStateId>
  <ParameterRecordDate>2025-08-02T15:23:43.0197204+02:00</ParameterRecordDate>
  <ParameterShopId>sample string 5</ParameterShopId>
  <ProcessId>sample string 2</ProcessId>
  <ResultMessage>sample string 8</ResultMessage>
</SchedulerJob>