Build and deploy pipeline using Mendix kubernetes private cloud api

0
I would like to build a pipeline for our Mendix Kubernetes private cloud. For the moment I am using postman to figure out the exacte api's I need to use. So far I succeded already in retrieving the latest commit from the teamserver, can I start a build, waiting to complete and retrieve the status of the build.   For the  build, I use: https://privatecloud.mendixcloud.com/api/v4/apps/${APP_ID}/packages/build with the correct body. I use the location header from the reponse the get the status.  So far everything is okay. Now I would like to deploy the package to our tst environment. I seems to work with a put to: https://privatecloud.mendixcloud.com/api/v4/apps/${APP_ID}/environments/${id} but then the body should contain a manifest. The current manifest (if I get the current from tst through postman) contains 500 lines of data contaning information about scheduled events, constants, .... If I build a pipeline, then I don't know all of this information, there could be new constants for example.   So how can I deploy the package that I have build with the postman api without making a manifest with 500 lines of data or how can I retrieve the changed data that I should add in the manifest?  
asked
0 answers