REST API XML handover

0
Hello, I want to hand over an XML of the following format threw mendix: <?xml version="1.0" encoding="UTF-8"?> <Root**********************************************">     <Transaction xmlns="">       <PersUser DmlCommand="SQ">         <UserId>***************</UserId>         <UserName />         <Mail />       </PersUser>     </Transaction> </Root>   How can I do this?   Kind regards, Adam
asked
1 answers
0

You need to use an Import Mapping to import data into Mendix, or an Export Mapping to export it.

https://docs.mendix.com/refguide/mapping-documents

These can import and export XML for you.

https://docs.mendix.com/howto/integration/importing-xml-documents
https://docs.mendix.com/howto/integration/export-xml-documents

Hope this helps

answered