Get the current user's App User details for a OneBlink Forms App. Returns undefined if the current user is not logged in.
undefined
const formsAppId = 1const formsAppUserDetails = await authService.getCurrentFormsAppUser(formsAppId)if (!formsAppUserDetails) { // handle unauthorised user} Copy
const formsAppId = 1const formsAppUserDetails = await authService.getCurrentFormsAppUser(formsAppId)if (!formsAppUserDetails) { // handle unauthorised user}
Optional
Get the current user's App User details for a OneBlink Forms App. Returns
undefinedif the current user is not logged in.Example