The following POST works via cURL from the terminal:
curl
--header 'Authorization: Bearer <access token here>'
--header 'Content-Type: application/json'
-X POST https://api.pushbullet.com/v2/pushes
--data-binary '{"type": "note", "title": "Note Title", "body": "Note Body"}'
However, I have been unable to replicate this in the Arduino IDE (in C). I thought I would be able to use the HTTPClient object, however I only see a method for GET in the documentation, and not POST.
I would appreciate any nod in the right direction.