Skip to content

Latest commit

 

History

History
 
 

alertoverbee

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 
 
 
 
 

AlertOverbee

This bee can push notification to your iOS or Android device or extension in Chrome as an action to some event.

You can get your SOURCE-KEY and RECEIVER-KEY from: https://www.alertover.com/pages/api

APP

Configuration

The SOURCE-KEY, RECEIVER-KEY and message content are mandatory. If the message's title is empty, it would be replaced by AlertOver.

The priority of the message is option, 0 for normal and 1 for emergency, 0 and 1 is string.

Options

"Bees": [
  {
    "Name": "alertover example",
    "Class": "alertoverbee",
    "Description": "This is example of alertoverbee",
    "Options": [
      {
        "Name": "source",
        "Value": "SOURCE-KEY"
      }
    ]
  },
]

Actions

"Actions": [
    {
      "Bee": "alertover example",
      "Name": "send",
      "Options": [
        {
          "Name": "receiver",
          "Type": "string",
          "Value": "RECEIVER-KEY"
        },
        {
          "Name": "title",
          "Type": "string",
          "Value": ""
        },
        {
          "Name": "content",
          "Type": "string",
          "Value": ""
        },
        {
          "Name": "url",
          "Type": "string",
          "Value": ""
        },
        {
          "Name": "priority",
          "Type": "string",
          "Value": ""
        }
      ]
    },
]