RemoveEdgeThing
The RemoveEdgeThing service removes the specified device from the set of devices that are connected to the EMS. In addition, it removes the device from the list of devices that should bind automatically when the EMS contacts the ThingWorx Platform.
Inputs
You pass in an infotable that contains the name of the Thing that you want to remove from the EMS:
TW_INFOTABLE, that contains the name of the Thing to remove. The infotable can be passed in as raw json. For example, {"name" : "ThingName"}
* 
If the removal is permanent, make sure that you also delete the Thing on the ThingWorx Platform side.
Outputs
This service returns an HTTP response only. If the operation was successful, it returns HTTP 200. Otherwise, it returns an HTTP error.
Here is an example of a REST call that deletes an Edge Thing from the list of devices that should bind automatically when the EMS contacts the ThingWorx Platform:

http://localhost:8000/Thingworx/Things/LocalEms/Services/RemoveEdgeThing
{
"name" : "acmeEdgeThing1"
}
Was this helpful?