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
Delete a Forms App User by its identifier
Minimum Role Permission
App Users: Manager
The exact Forms App User identifier you wish to delete
Get a single Forms App by its identifier
Minimum Role Permission
Apps: Read Only
The exact identifier of the Forms App you wish to get
Get a single Forms App for the Bearer token of a Forms App User
OptionalformsAppUserToken: unknownThe Bearer token in the Authorization header
from a request from an 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
StaticverifyA 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