-
Notifications
You must be signed in to change notification settings - Fork 10
PostNotification
Robin B edited this page Mar 13, 2020
·
1 revision
Send site-wide notifications to everyone viewing the website.
Key | Value |
---|---|
Content-Type | application/x-www-form-urlencoded |
Authorization | Configured admin token |
Key | Description | Format | Example |
---|---|---|---|
text | Notification text to display | String | hello! |
duration | Duration (seconds) of the notification | Integer | 5 |
Key | Description | Format | Example |
---|---|---|---|
--- | ----------- | ------ | ------- |
/admin/notification
with:
- text
test notification
- duration
3
Output:
{
"code": 200,
"message": "Notification sent.",
"notification": {
"text": "test notification",
"duration": 3
}
}