I hereby claim:
- I am bdeanindy on github.
- I am bdeanindy (https://keybase.io/bdeanindy) on keybase.
- I have a public key ASDPjnkOjCLdpArozFwcDUGUkBDR43ol0ZepP8-TXdXsNAo
To claim this, I am signing this object:
I hereby claim:
To claim this, I am signing this object:
| POST /api/v2/oauth/data/compliance HTTP/1.1 | |
| Host: https://zoom.us | |
| Content-Type: application/json | |
| Authorization: Basic | |
| { | |
| "client_id": "string", //from webhook event | |
| "user_id": "string", //from webhook event | |
| "account_id":"string", //from webhook event | |
| "deauthorization_event_received":{ |
| 'use strict'; | |
| // Determine if crypto support is available | |
| let crypto; | |
| try { | |
| crypto = require('crypto'); | |
| } catch (err) { | |
| console.error('crypto support is unavailable'); | |
| throw err; | |
| } |
| /** | |
| Just for example's sake, this would most-likely receive | |
| 429 HTTP responses if used in production. | |
| Should cache the access_token and re-use in a more | |
| modular fashion, but it helps explain the idea better. | |
| **/ | |
| // Instantiate the RingCentral SDK | |
| var sdk = new RingCentral.SDK({ | |
| server: 'https://platform.devtest.ringcentral.com', // SANDBOX |
| curl \ | |
| -H "Content-Type: application/json" \ | |
| -H "Authorization: <REPLACE_WITH_YOUR_API_KEY>" \ | |
| -X POST -d '{"options":{"open_tracking":true,"click_tracking":true},"return_path":"bounces@<REPLACE_WITH_YOUR_SENDING_DOMAIN_HERE>","metadata":{"some_useful_metadata":"testing_sparkpost"},"substitution_data":{"signature":"<REPLACE_WITH_YOUR_FIRST_AND_LAST_NAME>"},"recipients":[{"address":{"email":"<REPLACE_WITH_YOUR_EMAIL_ADDRESS>","tags":["learning"],"substitution_data":{"customer_type":"Platinum","first_name":"<REPLACE_WITH_YOUR_FIRST_NAME>"}}}],"content":{"from":{"name":"Awesome Company","email":"testing@<REPLACE_WITH_YOUR_SENDING_DOMAIN>"},"subject":"My first SparkPost Transmission","reply_to":"Awesome Company ","text":"Hi {{address.first_name}}\r\nYou have just sent your first email through SparkPost!\r\nCongratulations,\r\n{{signature}}","html":"<strong>Hi {{address.first_name}},</strong><p>You have just sent your first email through SparkPost!</p><p>Congratulations!</p>{{signature}}"}}' \ | |
| https://api.sparkpos |