Hi There,
I have the following example XML code:
<?xml version="1.0" encoding="UTF-8"?>
<RequestCall>
<RequestName>TestDBUser.Insert</RequestName>
<Params>
<TestDBUser>
<ExtUserID>33333</ExtUserID>
<FirstName>Peter</FirstName>
<LastName>NodeRed</LastName>
<Title>Mr</Title>
<UserExpiration.Enabled> 1 </UserExpiration.Enabled>
<UserExpiration> 2025-01-31 </UserExpiration>
<KeyExpirationDifferentFromUserExpiration> 1 </KeyExpirationDifferentFromUserExpiration>
<KeyRevalidation.UpdatePeriod> 3 </KeyRevalidation.UpdatePeriod>
<KeyRevalidation.UnitOfUpdatePeriod>0</KeyRevalidation.UnitOfUpdatePeriod>
</TestDBUser>
</Params>
</RequestCall>
If I insert it in an inject node msg.payload and send it through the HTTP Request node, it works fine and creates the user in my 3rd Party system.
But I will receive the name from an other system in JSON in a msg.username payload. How Can I insert this username into my xml code to make the First and LastName dynamic?