Send Pushbullet Push
Send a push notification via Pushbullet to one device or all devices on the access token's account. Supports plain note pushes and link pushes with an attached URL. Ideal for: personal alerts, cross-device link sharing, monitoring pings.
Catalog action Messaging pushbullet
Send a push notification via Pushbullet to one device or all devices on the access token's account. Supports plain note pushes and link pushes with an attached URL. Ideal for: personal alerts, cross-device link sharing, monitoring pings.
At a Glance
| Field | Value |
|---|---|
| Action ID | send-pushbullet-push |
| Category | Messaging |
| Connector | pushbullet |
| Requires gas | No |
| Funds movement | None declared |
| Tags | messaging, pushbullet, notification, push, write |
Payload Schema
| Field | Type | Required | Description |
|---|---|---|---|
deviceIden | string | No | Pushbullet device identifier to target. Empty = all devices on the access token's account. Devices are imported at connector creation; add new devices by identifier from the picker. |
type | string | No | Push type. "note" for plain text, "link" to attach a URL. |
title | string | Yes | Notification title. |
body | string | Yes | Notification body. |
url | string | No | URL to attach when type is "link". |
Result Schema
| Field | Type | Required | Description |
|---|---|---|---|
iden | string | Yes | Pushbullet push identifier (use for fetching status or dismissing later). |
active | boolean | No | Whether the push is still active (not dismissed). |
Examples
json{ "type": "send-pushbullet-push", "payload": { "title": "example-title", "body": "example-body" }, "children": [], "connector": { "type": "pushbullet", "id": "conn_pushbullet" }}
bashcurl -X POST "https://api.b3os.org/v1/actions/send-pushbullet-push/test" \ -H "Authorization: Bearer YOUR_API_KEY" \ -H "Content-Type: application/json" \ -d '{ "inputs": { "title": "example-title", "body": "example-body" }}'
Payload fields can use workflow expressions such as {{$trigger.body.amount}}, {{$nodes.fetch.result.price}}, and {{$props.asset}} when the value should come from a trigger, prior node, or reusable workflow prop.
