Community Tip - Did you get called away in the middle of writing a post? Don't worry you can find your unfinished post later in the Drafts section of your profile page. X
Hello,
I have created two things
1 Device
2 Databasecontroller
1. In first thing(Device) I have written below code in service.
let result = jsonmessage;
2. In second thing(DatabaseController) I want response of Device thing service using below code
var serviceName = "ConvertData";
let result=Things["Device"][serviceName]();
it is returning blank data.
You can call the first service from the second service.
Hi,
How to pass one service data(response) to another service?
A service has a return, so in the second service set whatever you want to output as the result and set the output to the proper base type.