Hi,
I want to know which api is responsible for importing M3 Odin application : H5 client -> Administration Tools -> Application -> upload the zip file -> execute the zip file.
Best regards.
It's a file upload to the path: https://xxxxv.infor.com/mne/servlet/FileServlet
This is a form post with a files array and a field: operation set to InstallApp. But this is NOT a public API so it can be changed at any time.
H5 Administrator role is required.
Hi @20412,
were you able to import a M3 Odin application via FileServlet mentioned by @Karin? I'm not succesful until today. I try to upload a zip file with following curl command:
curl --cookie "$JSESSIONID" --form-string 'operation=InstallApp' --form 'files[]=@account-master-local-libraries.zip;filename=account-master-test.zip' m3prdeuc1.m3.eu1.inforcloudsuite.com/.../FileServlet
The JSESSIONID environment variable contains JSESSIONID=<id> whereas I copied id from browser network traffic. Can you give me some advice?