Skip to contents

Retrieve History of Notifications

Usage

ntfy_history(
  since = "all",
  topic = ntfy_topic(),
  server = ntfy_server(),
  auth = ntfy_auth(),
  username = ntfy_username(),
  password = ntfy_password(),
  ...
)

Arguments

since

duration (e.g. "10m" or "30s"), a Unix timestamp (e.g. "1635528757"), a message ID (e.g. "nFS3knfcQ1xe"), or "all" (all cached messages)

topic

Subscribed topic to which to send notification

server

ntfy server (when not using https://ntfy.sh)

auth

(logical) indicating if the topic requires password authorization

username

username with access to a protected topic

password

password with access to a protected topic

...

any other (named) query parameters to add to the request

Value

a data.frame() with one row per notification, with columns as described in the documentation

Examples

if (FALSE) { # interactive()
# get the last hour of notifications
ntfy_history(since = "1h")
}