(Use Case) Pushbullet (Free Text Message Sending and Receiving)

Date of creation
Name
(Use Case) Pushbullet (Free Text Message Sending and Receiving)
Created by
  • data_popcorn

Workflow

Pre-work

Download Pushbullet (Android, iOS App, Chrome App)
After logging in to Pushbullet Google, follow the setup process.
Obtain a Pushbullet API key. ( There are many functions, but we will focus on only one function here : create-text for sending text messages .)
Just proceed with https://docs.pushbullet.com/ .
Issued from https://www.pushbullet.com/#settings/account to Access Tokens > Create Access Token

API Call

Now, connect to the n8n server, open the HTTP Request node, and put the code below in import cURL and run it. If it appears as in the picture, it is successful.
Check if the Access Token is working properly through Get Current User.
curl --header 'Access-Token: <your_access_token_here>' \ https://api.pushbullet.com/v2/users/me

Devices

Open the HTTP Request node in the same way, add the code below to import cURL and run it.
curl --header 'Access-Token: <your_access_token_here>' \ https://api.pushbullet.com/v2/devices

Texts

Open the HTTP Request node in the same way, add the code below to import cURL and run it.
curl --header 'Access-Token: <your_access_token_here>' \ --header 'Content-Type: application/json' \ --data-binary '{"data":{"addresses":["+13035551212"],"file_type":"image/jpeg","guid":"993aaa48567d91068e96c75a74644159","message":"Text message body.","target_device_iden":"ujpah72o0sjAoRtnM0jc"},"file_url":"https://dl.pushbulletusercontent.com/foGfub1jtC6yYcOMACk1AbHwTrTKvrDc/john.jpg"}' \ --request POST \ https://api.pushbullet.com/v2/texts

Edit Sets

Set the Access Token , recipient number , and message .
The recipient number must start with +82 and be written without hyphens. +8201012341234
Since it is sent through the Pushbullet server, it may not be sent if overseas SMS sending is blocked.

Execution results