Do not input private or sensitive data. View Qlik Privacy & Cookie Policy.
Skip to main content

Announcements
Discover how organizations are unlocking new revenue streams: Watch here
cancel
Showing results for 
Search instead for 
Did you mean: 
Anonymous
Not applicable

tRestRequest using POST parameter not working

Hi everyone, I'm trying to send parameters to tRESTRequest by post (using postman or soapui), but it's not working when I read the data.
I've 3 component in my Job -> "tRESTRequest ----> tXMLMap -------> tLogRow"
At SOAPUI or POSTMAN I'm setting the Content-Type = application/json and send the json below:
{
"msg" : "talend post",
"numberToDial" :
}
How can I get the parameters by post using talend?
tRESTRequest
  0683p000009MBwS.jpg
tXMLMAP
0683p000009MBwX.jpg 0683p000009MAar.jpg 

JSON
0683p000009MBoK.jpg 0683p000009MBwc.jpg
Labels (6)
2 Replies
Anonymous
Not applicable
Author

Hi junin,
Try to send :
{
"root": {
"msg" : "talend post",
"numberToDial" :
}
}
Anonymous
Not applicable
Author

Hi kdurie, thanks a lot, the problem was fixed.