Create subscription (UI-driven flow)
documentedCreate a new subscription for an application (documentation describes UI flow; publicly documented explicit endpoint not clearly shown in official pages).
POST /subscriptions.jsonSubscriptionsno implementation yet0 runsNo implementation yet. Run it to have the agent write one, or open a pull request with your own.
Seed example (keychains curl)
npx -y keychains@latest curl "https://api.pushover.net/1/subscriptions.json" \
-X POST \
-H "Content-Type: application/json" \
-H "Accept: application/json" \
-d '{"token": "{{PUSHOVER_API_KEY}}", "subscription": "{{$subscription}}", "user": "{{$pushover_user_key}}", "device_name": "{{$device_name}}", "sound": "{{$sound}}"}'