Hi there,
I want to get the Dependancies of an App like shown in SerivceCenter --> Factory --> Applications --> DependenciesTab. (click on an application in the list in the factory list view. Then the detail page of this application is shown and there is a tab Dependencies, next to the used modules)
Now I want to get this information via API from our outsystems infrastructur. This should be independent of the enviroment, but i would be happy to make 2 calls for each enviroment.
I spend a lot of time using the LifeTime APIv2. and i managed to get all applications, all Versions deployed on an enviroment and even the used modules and their versions on this enviroment. But in this way, I do not get the modules of other applications.
But I didn't find a way to get the information about the dependancies on application level.
Example: For example: All my applications have a dependancy to the "OutSystems Carts" application. I want to make an API-call likeGET {enviroment-url}/applications/{applicationkey}/dependancies
Response:
[
{applicationkey_1}, {applicationkey_2}, {applicationkey_3}
]
Is there any way to get this information using any of the outsystems provided API?
Thank you in advance
Hello Simon,I'm not sure if you can do that with LifeTime API v2, but I think you might be able to do it with Discovery:
https://www.outsystems.com/forge/component-overview/409/discovery
Hi Sergio,
thanks for your answer. it helped! i looked into it and hopefully I can use their API or their dataset of the snapchots for my uses.
It is on the other hand not the nicest way to get the answers.
So if anyone else is having an idea, pls help.
Thanks in advance.