diff --git a/apprise_api/api/templates/welcome.html b/apprise_api/api/templates/welcome.html index 87de831..b59a98e 100644 --- a/apprise_api/api/templates/welcome.html +++ b/apprise_api/api/templates/welcome.html @@ -401,7 +401,7 @@ - tags + tag {% blocktrans %}Apply tagging logic to the further filter your URLs. This is an optional field.{% endblocktrans %} @@ -413,7 +413,7 @@

 								    # {% blocktrans %}Notifies all URLs assigned the devops tag{% endblocktrans %}
- curl -X POST -d '{"tags":"devops","body":"test body","title":"test title"}' \
+ curl -X POST -d '{"tag":"devops","body":"test body","title":"test title"}' \
    -H "Content-Type: application/json" \
    http://localhost:8000/notify/KEY
@@ -426,7 +426,7 @@ from urllib.request import Request

payload = {
-     'tags': 'devops',
+     'tag': 'devops',
    'title': 'test title',
    'body': 'test body',
}
@@ -453,7 +453,7 @@
//The JSON data.
$jsonData = array(
-     'tags' => 'devops',
+     'tag' => 'devops',
    'title' => 'test title',
    'body' => 'test body'
);
@@ -495,4 +495,4 @@

- {% endblock %} \ No newline at end of file + {% endblock %}