Skip to main content
17-Peridot
December 13, 2020
Solved

How to get the result type of a javascript service ?

  • December 13, 2020
  • 3 replies
  • 1297 views

Hi, 

I have dynamic JavaScript service , like :   let result =  Things[thingName][serviceName](serviceParam); 

 

How can I get the base type of the result for such a dynamic service ? 

 

Regards,

Sean 

Best answer by nmilleson

@seanccc ,

 

You can use the GetServiceDefinition() service on a Thing and it will tell you the return type.  Hope that helps.

var result = Things["myThing"].GetServiceDefinition({
	name: "myService" /* STRING */
});

 

3 replies

16-Pearl
December 14, 2020

The return result type is based on the service what you are calling. Different service will return different object type. You need to check the return type of the exact service.

nmilleson17-PeridotAnswer
17-Peridot
December 14, 2020

@seanccc ,

 

You can use the GetServiceDefinition() service on a Thing and it will tell you the return type.  Hope that helps.

var result = Things["myThing"].GetServiceDefinition({
	name: "myService" /* STRING */
});

 

Support
December 22, 2020

Hi @seanccc.

 

If your question has been answered, please mark the appropriate response as the Accepted Solution for the benefit of others with the same question.

 

Regards.

 

--Sharon