Skip To Content
ArcGIS Developer
Dashboard

Lifecycle Information (Item)

Description

A data store item's lifecycleinfos resource returns the date and time information (in Unix epoch format) for when a data store item was created and updated.

Request parameters

ParameterDetails
f

The response format. The default format is html.

Values: html | json | pjson

Example usage

The following is a sample request URL used to access a database child item's lifecycleinfos resource:

https://machine.domain.com/webadaptor/admin/data/items/enterpriseDatabases/myDatabase/lifecycleinfos?f=json

JSON Response example


{
  "lifecycleinfos": [
    {
      "user": "0123456789ABCDEF::portaladmin",
      "timestamp": 1665761149386,
      "type": "created"
    },
    {
      "user": "0123456789ABCDEF::portaladmin",
      "timestamp": 1665761167121,
      "type": "edited"
    }
  ],
  "lastmodified": 1665761167121
}