20
Views
4
Comments
Need initial production deployment date of the application.

I have requirement, to get the initial production deployment date of the application. I need the systems entity where Outsystems store this data.

2023-12-26 10-35-28
OutSystems Neo
Staff
AI Generated

In OutSystems, the initial production deployment date of an application is stored in the system entity OSSYS_APPLICATION. This entity contains meta-information about the applications in your environment, including the deployment details.

The FirstDeployedDate attribute of this entity specifically holds the date and time when the application was first deployed to the production environment. You can query this entity using an Advanced Query or SQL tool to retrieve this information, provided you have the necessary permissions.

For further details on managing applications and deployments, consult related resources like Deploying an Application.

This answer was AI-generated. Please read it carefully and use the forums for clarifications
2021-09-06 15-09-53
Dorine Boudry
 
MVP

ignore this, Neo is talking about non-existing attributes

2024-10-12 12-11-20
Kerollos Adel
Champion

hallo @Jivendra Kumar ,

may check deployment history with filter target your production may help you my friend


2019-01-07 16-04-16
Siya
 
MVP

@Jivendra Kumar :  Please check whether the LifeTime API (https://success.outsystems.com/documentation/11/reference/outsystems_apis/lifetime_api_v2/#get-/applications/) helps. The Applications endpoint provides a list of applications, and you can retrieve the ApplicationKey from this response. It also includes AppStatusInEnvs, which provides the status of each application across environments.

After obtaining the ApplicationKey, you can use the endpoint /applications/{ApplicationKey}/versions/ to retrieve the application versions. The CreatedOn field in the version details should give you the information you need.

Community GuidelinesBe kind and respectful, give credit to the original source of content, and search for duplicates before posting.