Skip to content

Notify_notica

Chris Caron edited this page Oct 19, 2019 · 4 revisions

Notica Notifications

  • Source: https://notica.us/
  • Icon Support: No
  • Message Format: Text
  • Message Limit: 32768 Characters per message

Account Setup

Notica doesn't require you to create an account at all. You just have to visit their website at least once to both:

  1. Get your token
  2. Enable Browser Notifications (to be sent from the Notica website)

The website will generate you a URL to post to that looks like this: https://notica.us/?abc123

This effectively equates to: https://notica.us/?{token} Note: disregard the question mark on the URL as it is not part of the token.

From here you have two options, you can directly pass the Notica URL into apprise exactly how it is shown to you from the website, or you can reconstruct the URL into an Apprised based one (which equates to slightly faster load times) as: notica://{token}

Syntax

Valid syntaxes are as follows:

  • https://notica.us/?{token}
  • notica://{token}

Parameter Breakdown

Variable Required Description
token Yes The Token that was generated for you after visiting their website.

Example

Send a notica notification:

# Assuming our {token} is abc123

apprise notica://abc123
Clone this wiki locally