JOC API

Version 1.13.10

Download RAML
JOC API
/audit_log
POST

Responds the audit log


Parameters in the POST body schema

Name Type Description Example Default
jobschedulerId optional, string JobScheduler Master ID scheduler
dateFrom optional, string The value has multiple formats
  • a format for a date in ISO 8601 format where the time offset and milliseconds are optional, e.g.
    • YYYY-MM-DDThh:mm:ss[.s][Z (Z means +00)]
    • YYYY-MM-DDThh:mm:ss[.s][+01:00]
    • YYYY-MM-DDThh:mm:ss[.s][+0100]
    • YYYY-MM-DDThh:mm:ss[.s][+01]
  • a format for a time period in relative to the current time, e.g. 6h, 12h, 1d, 1w can specify in addition with a time offset 0 or digits followed by a letter are expected where the letter has to be:
    • s (seconds)
    • m (minutes)
    • h (hours)
    • d (days)
    • w (weeks)
    • M (months)
    • y (years)
  • a time offset is optional (e.g. 2d+02:00)
    • it can be also specify with the parameter timeZone
    • if timeZone undefined then UTC is used
  • the value 0 means the current time
  • Returns only collection items younger than this date.
1d
dateTo optional, string The value has multiple formats like the dateFrom parameter
  • Return only collection items older than this date.
0
timeZone optional, string
  • If this parameter is set then it beats the time offset in dateFrom and dateTo
  • See here the list for available time zones.
Berlin/Europe
regex optional, string Regular expression to filter the collection .*
folders optional, array collection of folder objects [{
"folder": "/sos",
"recursive": true
}]
requests optional, array Field to search for request URLs. [
"./jobscheduler/terminate",
"./jobscheduler/restart"
]
jobs optional, array Filtered response by a collection of jobs specified by its job path.
Other parameters such as folders, excludeJobs and regex are ignored if this parameter is defined.
[{
"job":"/sos/reporting/Inventory"
}]
orders optional, array Filtered response by a collection of orders specified by its job chain path and an optional order id.
If "orderId" is undefined then all orders of the specified job chain are included in the response.
If "orderId" is specified then parameters such as folders, types, excludeOrders and regex are ignored.
[{
"jobChain":"/sos/reporting/Inventory",
"orderId":"Inventory"
}]
calendars optional, array Filtered response by a collection of calendars specified by its calendar path. Some other parameters such as calendarIds, folders, regex, type and categories are ignored if this parameter is defined. [
"/sos/myCalendar",
"/sos/myCalendar2"
]
ticketLink optional, string Field to search for a ticket link.
account optional, string Only items of the specified account are sent
limit optional, integer Restricts the number of responsed records, -1=unlimited 5000 10000