Call a Zoho Creator URL with a XML from a custom function

Call a Zoho Creator URL with a XML from a custom function

Hello everyone,

We have a Zoho Creator app made by other developer that works through a webhook with a XML. Do you know how can I send the XML inside a custom function? 

The XML is like this

  1. <ZohoCreator>
  2.     <applicationlist>
  3.         <application name='name-app'>
  4.             <viewlist>
  5.                 <view name="name_View">
  6.                     <add>
  7.                         <field name='idInvoice'><value>${INVOICE.INVOICE_ID}</value></field>
  8.                     </add>
  9.                 </view >
  10.             </viewlist>
  11.         </application>
  12.     </applicationlist>
  13. </ZohoCreator>