Created
May 2, 2016 02:08
-
-
Save jb41/3803381dbe35835fbdb2ba514b16669f to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
require 'json' | |
require 'httparty' | |
def add_email_to_spreadsheet(email) | |
HTTParty.post( | |
'https://sheetsu.com/apis/v1.0/c12aec61', | |
body: { email: email }.to_json, | |
headers: { 'Content-Type' => 'application/json', 'Accept' => 'application/json'} | |
).body | |
end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment