Skip to main content
GET
/
history
/
{service}
/
items
/
{item}
Get a service history item
import requests

url = "https://{FUSION HOST}/api/history/{service}/items/{item}"

response = requests.get(url)

print(response.json())
{
  "events": [
    {
      "start": "2014-05-16T15:34:49.008Z",
      "end": "2014-05-16T15:34:49.435Z",
      "source": "scheduler",
      "type": "execute",
      "status": "ok",
      "details": {
        "status": 200,
        "entity": "{\n  \"id\" : \"TwitterSearch\",\n  \"dataSourceId\" : \"TwitterSearch\",\n  \"state\" : \"RUNNING\",\n  \"message\" : null,\n  \"startTime\" : 1400254489000,\n  \"endTime\" : -1,\n  \"finished\" : false,\n  \"counters\" : { },\n  \"exception\" : null,\n  \"running\" : true\n}"
      },
      "error": null
    },
    {
      "start": "2014-05-16T15:38:32.536Z",
      "end": "2014-05-16T15:38:32.559Z",
      "source": "scheduler",
      "type": "execute",
      "status": "ok",
      "details": {
        "status": 200,
        "entity": "{\n  \"id\" : \"TwitterSearch\",\n  \"dataSourceId\" : \"TwitterSearch\",\n  \"state\" : \"RUNNING\",\n  \"message\" : null,\n  \"startTime\" : 1400254712000,\n  \"endTime\" : -1,\n  \"finished\" : false,\n  \"counters\" : { },\n  \"exception\" : null,\n  \"running\" : true\n}"
      },
      "error": null
    }
  ]
}

Path Parameters

service
string
required

The name of a service.

item
string
required

The name of a history item.

Query Parameters

timeRange
string

Time range in Solr format. Default value is [NOW-30DAYS/DAY TO NOW].

maxLength
integer

Maximum number of history elements to retrieve. Default value is 50. For values greater than 500, only 500 history elements will be retrieved.

Response

200 - application/json

successful operation

events
object[]