In integration if the response is in xml format, how to convert it to appian value and save in a record type
Discussion posts and replies are publicly visible
You could try using: XML Parser
Otherwise, you just parse the XML manually and create your Record Type.
How to do it manually
Here is a quick example:
a!localVariables( local!xml: ri!xml, local!device: extract(local!xml, "<name>", "</name>"), local!brand: extract(local!xml, "<brand>", "</brand>"), local!price: extract(local!xml, "<price>", "</price>"), { device: local!device, brand: local!brand, price: local!price } )