forked from messagebird/python-rest-api
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathverify_create.py
More file actions
45 lines (36 loc) · 1.39 KB
/
Copy pathverify_create.py
File metadata and controls
45 lines (36 loc) · 1.39 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
import sys, os
sys.path.append(os.path.join(os.path.dirname(__file__), '..'))
import messagebird
# ACCESS_KEY = ''
# PHONE_NUMBER = ''
try:
ACCESS_KEY
except NameError:
print('You need to set an ACCESS_KEY constant in this file')
sys.exit(1)
try:
PHONE_NUMBER
except NameError:
print('You need to set a PHONE_NUMBER constant in this file')
sys.exit(1)
try:
# Create a MessageBird client with the specified ACCESS_KEY.
client = messagebird.Client(ACCESS_KEY)
# Create a new Lookup HLR object.
verify = client.verify_create(PHONE_NUMBER)
# Print the object information.
print('\nThe following information was returned as a Verify object:\n')
print(' id : %s' % verify.id)
print(' href : %s' % verify.href)
print(' recipient : %s' % verify.recipient)
print(' reference : %s' % verify.reference)
print(' messages : %s' % verify.messages)
print(' status : %s' % verify.status)
print(' createdDatetime : %s' % verify.createdDatetime)
print(' validUntilDatetime : %s\n' % verify.validUntilDatetime)
except messagebird.client.ErrorException as e:
print('\nAn error occured while requesting a Verify object:\n')
for error in e.errors:
print(' code : %d' % error.code)
print(' description : %s' % error.description)
print(' parameter : %s\n' % error.parameter)