nayelyz
(SmartThings Developer Support)
January 6, 2023, 8:31pm
3
Hi, @JDRoberts !
Personally, I only call SmartApps the ones in the new platform and the others are Groovy/Legacy SmartApps.
But, there are other references like Graham mentioned, the API reference > Apps endpoint defines only two types of apps “Lambda”/“Webhook”:
Also, in some tutorials, they are called endpoint SmartApps:
For this tutorial we will be taking a closer look at endpoint smartapps by automating a light based on our Zoom presence status. We want to create an automation that will react to our presence status and activate a light when we go “On Air”.
Prerequisites:
Samsung Developer Workspace Account
Android Device
Glitch.com Account
Preparation
Remix the glitch app at this url
Overview
The work of creating a SmartApp using Javascript has been greatly simplified with the following packages
const SmartApp = require('@smartthings/smartapp');
const FileContextStore = require('@smartthings/file-context-store')
The two packages that will be used for this tutorial are the SmartApp SDK and the FileContextStore. The SmartApp SDK provides the boilerplate for creating SmartApps on the platform an…
2 Likes