How to extract price?

Hi there!

I’m getting this information from my webhook:

[
{
“Jahresabo”: “on”,
“Schulung”: “”,
“Lizenzen”: “2”,

    [...]

    "SchoolId": "214",
    "Passwort": "LHVw*eTd",
    "itemsXml": "\r\n          <ITEM>\r\n            <ARTICLE_NUMBER>10001</ARTICLE_NUMBER>\r\n            <DESCRIPTION>Jahresabonnement DBP</DESCRIPTION>\r\n            <QUANTITY>2</QUANTITY>\r\n            <UNIT_PRICE>349.00</UNIT_PRICE>\r\n            <VAT_PERCENT>0</VAT_PERCENT>\r\n          </ITEM>\r\n        ",
    "Zeit": "19.07.2024 08:42:06"
}

]

I’m trying to extract the price information from the “itemsXml”. How do I do this?

Hey @tobimahony

Use the XML parse module for extracting and in that map the itemsXML so that you can get details .
image

3 Likes

Hey @tobimahony

You can Try this



1 Like

Hey @Anshul_Soni!

Thank you very much for your quick reply. I knew this must be a simple solution. Thank you again for answering even the simple questions like this. I love the Make community for this. Sometimes you’re too much into it to see the obvious things. :slight_smile:

2 Likes