Updated a few scripts, mostly of Talkspace. Added some notes for big ideas. Began on Blacklane's signup page.

This commit is contained in:
Norm Rasmussen
2023-11-16 21:41:51 -05:00
parent aeb811db4e
commit c3aedce0d1
6 changed files with 143 additions and 12 deletions

View File

@ -0,0 +1,15 @@
import sys
sys.path.insert(0, "./API_Tests/")
import requests
import Apikeys
apikey = Apikeys.G2
url = "https://api.northpass.com/v2/email_domains"
header = { "x-api-key": apikey, "Content-Type": "application/json" }
payload = {"domain": "g2.com", "custom_dkim_selector": "n"}
response = requests.post(url, headers=header, json=payload)
print(response.json())
print(response.text)
print(response.status_code)