Topics
All
MacOS
(Only)
Windows
(Only)
Linux
(Only, Not)
iOS
(Only, Not)
Components
Crossplatform Mac & Win
Server
Client
Old
Deprecated
Guides
Examples
Videos
New in version:
12.2
12.3
12.4
12.5
13.0
13.1
13.2
13.3
13.4
13.5
Statistic
FMM
Blog
Checks whether a web hook has been triggered.
Component | Version | macOS | Windows | Linux | Server | iOS SDK |
WebHook | 11.5 | ✅ Yes | ✅ Yes | ✅ Yes | ✅ Yes | ✅ Yes |
none
Returns list or error.
Looping script to process incoming requests:
Loop
# check for pending requests
Set Variable [ $list ; Value: MBS( "WebHook.Check" ) ]
#
# loop over pending requests
Set Variable [ $count ; Value: ValueCount($list) ]
Set Variable [ $index ; Value: 1 ]
If [ $index ≤ $count ]
Loop
Set Variable [ $ref ; Value: GetValue($list; $index) ]
Perform Script [ Specified: From list ; “WebHookReceived on server” ; Parameter: $ref ]
#
# next
Set Variable [ $index ; Value: $index + 1 ]
Exit Loop If [ $index > $count ]
End Loop
End If
#
Pause/Resume Script [ Duration (seconds): ,1 ]
End Loop
This function checks for a license.
Created 13th October 2021, last changed 18th October 2021