Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Finally got around to upgrading to the newest QlikSense Enterprise and loving the custom banner messages. Does anyone know if there is a CLI or API call we can make to "automate" these on a schedule? If not I'll throw it over in the idea world but figured there might be one in place somewhere.
This can be achieved with QlikSenseCLI using the following snippet
#https://github.com/QlikProfessionalServices/QlikSenseCLI
Connect-QlikSense -TrustAllCertificates
$newCBM = New-QSCustomBannerMessage -Name "Banner_Name" -Message "BannerMessage" -MessageType Info -IsActive $true -Duration 10
$QSCBM = Add-QSCustombannermessage -CustomBannerMessageObj $newCBM
this uses the QRS API "https://_yourQlikSenser_/qrs/custombannermessage"
This can be achieved with QlikSenseCLI using the following snippet
#https://github.com/QlikProfessionalServices/QlikSenseCLI
Connect-QlikSense -TrustAllCertificates
$newCBM = New-QSCustomBannerMessage -Name "Banner_Name" -Message "BannerMessage" -MessageType Info -IsActive $true -Duration 10
$QSCBM = Add-QSCustombannermessage -CustomBannerMessageObj $newCBM
this uses the QRS API "https://_yourQlikSenser_/qrs/custombannermessage"
Brilliant thanks!