> For the complete documentation index, see [llms.txt](https://inscada.gitbook.io/ins/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://inscada.gitbook.io/ins/en-1/programing/apis/notification-functions.md).

# Notification Functions

The information functions enable the user to send information messages to the users via script/expression in the inSCADA Platform.

## Notification Messages

#### ins.notify(string info,string title,string message)

string info : Information message type.  (info,error,warrning....)

string title: The title of the information message.

string message: Information message.

Return Value: Does not return any value.

#### Syntax

```javascript
ins.notify("info","Message Title","Hello World")
```
