Name
(* = required)
|
Data Type | Description |
name
*
|
string |
|
|
Type |
Description |
RecurringJobName |
string
|
|
CreatedAt |
DateTime
|
UTC datetime when template created
|
Cron |
string
|
|
MethodName |
string
|
partially-qualified name of job method, beginning with top-level namespace after HH preramble, ending with a specific interface method
|
MethodParams |
String[]
|
values of each of the method parameters, encoded as JSON; for parameter names see JobMethod
|
NextExecution |
DateTime
|
UTC
|
LastExecution |
DateTime?
|
UTC
|
LastJobId |
Int64?
|
|
Links |
IList<WebApi.Hal.Link>
|
|
|
-
/rels/jobs/jobhistory
|
last job |
Sample accept: application/hal+json
{
"recurringJobName": "str",
"createdAt": "2016-12-25T23:00:00",
"cron": "str",
"methodName": "str",
"methodParams": [
"str"
],
"nextExecution": "2016-12-25T23:00:00",
"lastExecution": "2016-12-25T23:00:00",
"lastJobId": 1
}