I have a service that I'm using that has a callback mechanism. When an operaiton is completed it sends to the URL I gave it a POST with two additional params in the URL (Not in the body)
An example to the callback could be: https://test.com/notifyme?projectName=MyProject&id=1234abcd&state=Processed
I'd like to use the Request / Response component for the callback and would later want to use the URL for further flows.
To make things simple what would I need to do in order to send an E-Mail with the id in the E-Mail body once the callback arrive with the id in the E-Mail body?