- URL:
- https://<root>/data/items/<dataItem>/<childItem>/lifecycleinfos
- Methods:
- GET
- Required Capability:
- Access allowed with any authorized privilege
- Version Introduced:
- 11.1
Description
The lifecycleinfos resource returns the date and time information (in Unix format) for when a data store item was created and updated.
Request parameters
| Parameter | Details | 
|---|---|
| 
 | The response format. The default format is  Values:  | 
Example usage
The following is a sample request URL used to access the lifecycleinfos resource:
https://machine.domain.com/webadaptor/admin/data/items/enterpriseDatabases/myDatabase/lifecycleinfos?f=pjsonJSON Response example
{
  "lifecycleinfos": [
    {
      "user": "0123456789ABCDEF::portaladmin",
      "timestamp": 1665761149386,
      "type": "created"
    },
    {
      "user": "0123456789ABCDEF::portaladmin",
      "timestamp": 1665761167121,
      "type": "edited"
    }
  ],
  "lastmodified": 1665761167121
}