Dynamic Service - Entityname Parameter
I have a service on a ThingShape. In my Mashup I connetced a selectedThing to the EntityName Parameter.
How to access this parameter in the service JS?
I want to reduce the number of additional input parameter, so i thought it would be "faster" to call this service dynamic and pass the thing as entityname to work with it inside the service.
var params = {
identifier: undefined /* STRING */
};
// result: THINGNAME
var machine = Resources["EntityServices"].GetThingNameForIdentifier(params);
.... Code does something with machinename here.
What is the parameter/variablename for the entityname?

