Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nextcloud/admin_notifications.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJoas Schilling <coding@schilljs.com>2017-02-09 13:17:10 +0300
committerJoas Schilling <coding@schilljs.com>2017-02-09 13:30:24 +0300
commitc99c1beceb3d489cc5d1042df004bfc311c9c27b (patch)
tree82e28d70983ee1cccd2872a568fa4e3a1327840d
parent9983a61a7fbdfe0b55e8224de5fbb92ff6e4ec93 (diff)
Add sample calls to the READMEv1.0.0
Signed-off-by: Joas Schilling <coding@schilljs.com>
-rw-r--r--README.md65
-rw-r--r--docs/Screenshot.pngbin0 -> 12192 bytes
2 files changed, 65 insertions, 0 deletions
diff --git a/README.md b/README.md
index 3785af3..9740ccb 100644
--- a/README.md
+++ b/README.md
@@ -1,3 +1,68 @@
# 🔧🔔 Admin notifications
Allows admins to generate notifications for users via the console or an HTTP endpoint
+
+## Console command
+
+```
+$ sudo -u www-data ./occ notification:generate \
+ admin "Short message up to 255 characters" \
+ -l "Optional: longer message with more details, up to 4000 characters"
+```
+
+### Help
+
+```
+$ sudo -u www-data ./occ notification:generate --help
+Usage:
+ notification:generate [options] [--] <user-id> <short-message>
+
+Arguments:
+ user-id User ID of the user to notify
+ short-message Short message to be sent to the user (max. 255 characters)
+
+Options:
+ -l, --long-message=LONG-MESSAGE Long mesage to be sent to the user (max. 4000 characters) [default: ""]
+
+```
+
+## HTTP request
+
+```
+curl -H "OCS-APIREQUEST: true" -X POST \
+ https://admin:admin@localhost/ocs/v2.php/apps/admin_notifications/api/v1/notifications/admin \
+ -d "shortMessage=Short message up to 255 characters" \
+ -d "longMessage=Optional: longer message with more details, up to 4000 characters"
+```
+
+### Help
+```
+curl -H "OCS-APIREQUEST: true" -X POST \
+ https://<admin-user>:<admin-app-password-token>@<server-url>/ocs/v2.php/apps/admin_notifications/api/v1/notifications/<user-id> \
+ -d "shortMessage=<short-message>" \
+ -d "longMessage=<long-message>"
+
+admin-user: User ID of a user with admin priviliges
+admin-app-password-token: Password or an "app password" of the "admin-user"
+server-url: URL with Webroot of your Nextcloud installation
+user-id: User ID of the user to notify
+short-message: Short message to be sent to the user (max. 255 characters)
+long-message: Long mesage to be sent to the user (max. 4000 characters)
+```
+
+### Return codes
+
+Status | Description
+------ | -----------
+200 | Notification was created successfully
+400 | Too long or empty `short-message`, too long `long-message`
+404 | Unknown user
+500 | Unexpected server error
+503 | Instance is in maintenance mode
+
+## Screenshot
+
+Both the occ command and the HTTP request generate the same notification
+
+
+![Admin notification triggered from console](docs/Screenshot.png)
diff --git a/docs/Screenshot.png b/docs/Screenshot.png
new file mode 100644
index 0000000..d99fff7
--- /dev/null
+++ b/docs/Screenshot.png
Binary files differ