Last active
August 29, 2015 14:25
-
-
Save elgehelge/78028a2bbad097c4cf3d to your computer and use it in GitHub Desktop.
This file contains hidden or 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
import requests | |
data = { | |
'apikey' : "9a128231f9bd4d82ac7d28cc74bde19d”, | |
'user_data': { | |
'name' : "John Doe", | |
'email' : "johndoe@gmail.com” | |
'address' : "123 John st. 12345 Doe” | |
'phone' : "12345678” | |
'device ID' : "12345ab6cde789f” | |
'credit card' : "1234567812345678” | |
} | |
} | |
r = requests.post('https://api.basset.io/user/verify', data=data) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment