Updated Development_API (markdown)

master
Chris Caron 2019-02-15 15:33:14 -05:00
parent faf4ccd843
commit ad4150741a
1 changed files with 2 additions and 3 deletions

@ -72,9 +72,8 @@ apobj.notify(
#### Leverage Tagging #### Leverage Tagging
If you associated tags with your notification services when you called **add()** earlier, you can leverage it's full potential through the **notify()** function here. Tagging however allows you to trigger notifications only when a criteria is met. The tagging logic can be interpreted as follows: If you associated tags with your notification services when you called **add()** earlier, you can leverage it's full potential through the **notify()** function here. Tagging however allows you to trigger notifications only when a criteria is met. The tagging logic can be interpreted as follows:
| apprise.notify(tag=**match**) | Tag Representation | | apprise.notify(tag=_match_) | Notify Services Having Tag(s): |
| -------------------------------- | ------------------------ | | -------------------------------- | ------------------------------ |
| _None_ | All Notifications (_this is the default_)
| "TagA" | TagA | "TagA" | TagA
| "TagA, TagB" | TagA **OR** TagB | "TagA, TagB" | TagA **OR** TagB
| ['TagA', 'TagB'] | TagA **OR** TagB | ['TagA', 'TagB'] | TagA **OR** TagB