- URL:
- https://<root>/services/<serviceName>.<serviceType>/lifecycleinfos
- Methods:
- GET
- Required Capability:
- Access allowed with any authorized privilege
- Version Introduced:
- 11.1
Description
A service's lifecycleinfos resource returns the date and time information (in Unix format) of when a service was created or 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 a service's lifecycleinfos resource:
https://machine.domain.com/webadaptor/admin/services/Maps/SeattleMap.MapServer/lifecycleinfos?f=pjsonJSON Response example
{
  "lifecycleinfos": [
    {
      "user": "0123456789ABCDEF::portaladmin",
      "timestamp": 1681810861337,
      "type": "created"
    },
    {
      "user": "0123456789ABCDEF::portaladmin",
      "timestamp": 1681810865978,
      "type": "edited"
    },
    {
      "user": "",
      "timestamp": 1681820011156,
      "type": "stopped"
    },
    {
      "user": "",
      "timestamp": 1681820011572,
      "type": "started"
    }
  ],
  "lastmodified": 1681820011572
}