Create a Forms App
Minimum Role Permission
Apps: Manager
Forms App properties
Create a Forms App User
Minimum Role Permission
App Users: Manager
Forms App User
Get the email address forms app emails will be sent from
Minimum Role Permission
Apps: Read Only
The ID of the forms app you wish to get the sending address for
Set the email address forms app emails will be sent from
Minimum Role Permission
App Users: Manager
The ID of the forms app you wish to set the sending address for
The object containing the emailAddress
&
emailName
properties
Optional
emailStatic
verifyJWTA Static function to verify a JWT and return its result
The JWT you wish to verify
const token =
'Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiIxMjM0NTY3ODkwIiwibmFtZSI6IkpvaG4gRG9lIiwiaWF0IjoxNTE2MjM5MDIyfQ.SflKxwRJSMeKKF2QT4fwpMeJf36POk6yJV_adQssw5c'
// or
const token =
'eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiIxMjM0NTY3ODkwIiwibmFtZSI6IkpvaG4gRG9lIiwiaWF0IjoxNTE2MjM5MDIyfQ.SflKxwRJSMeKKF2QT4fwpMeJf36POk6yJV_adQssw5c'
OneBlink.FormsApps.verifyJWT(token)
.then((result) => {
// Result is Decoded Token
})
.catch((e) => {
// Token was invalid
})
Example