Skip to main content

Is it possible to make an http request (automation) with XML content?
 

 

I believe so. perform a test with the xml provider API


Yes, it is possible Kamik.

You can override the default content header in `Header/Value` field, if you want (bear in mind that Pipefy do not provide any validation here, please):

{“content-type”: “text/xml”}

 

and add a xml text as body: 

<?xml version="1.0" encoding="UTF-8"?>
<note>
<to>Tove</to>
<from>Jani</from>
<heading>Reminder</heading>
<body>Don't forget me this weekend!</body>
</note>

 


great tip


Reply