Skip to main content
Version: Ionic SDK

Start message programmatically

tip

You can find the MESSAGE_ID in the Manual section of the message editor, or in the URL after /messages/.

import { ScreebModule, ScreebService } from "@screeb/sdk-angular";

constructor(private screeb: ScreebService) {}

await this.screeb.messageStart("<MESSAGE_ID>");

Prevent multiple displays

await this.screeb.messageStart("<MESSAGE_ID>", false);

Close a message

await this.screeb.messageClose();