forked from messagebird/python-rest-api
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmessage.py
More file actions
54 lines (44 loc) · 1.72 KB
/
Copy pathmessage.py
File metadata and controls
54 lines (44 loc) · 1.72 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
46
47
48
49
50
51
52
53
54
#!/usr/bin/env python
import sys, os
sys.path.append(os.path.join(os.path.dirname(__file__), '..'))
import messagebird
# ACCESS_KEY = ''
# MESSAGE_ID = ''
try:
ACCESS_KEY
except NameError:
print('You need to set an ACCESS_KEY constant in this file')
sys.exit(1)
try:
MESSAGE_ID
except NameError:
print('You need to set a MESSAGE_ID constant in this file')
sys.exit(1)
try:
# Create a MessageBird client with the specified ACCESS_KEY.
client = messagebird.Client(ACCESS_KEY)
# Fetch the Message object for the specified MESSAGE_ID.
msg = client.message(MESSAGE_ID)
# Print the object information.
print('\nThe following information was returned as a Message object:\n')
print(' id : %s' % msg.id)
print(' href : %s' % msg.href)
print(' direction : %s' % msg.direction)
print(' type : %s' % msg.type)
print(' originator : %s' % msg.originator)
print(' body : %s' % msg.body)
print(' reference : %s' % msg.reference)
print(' validity : %s' % msg.validity)
print(' gateway : %s' % msg.gateway)
print(' typeDetails : %s' % msg.typeDetails)
print(' datacoding : %s' % msg.datacoding)
print(' mclass : %s' % msg.mclass)
print(' scheduledDatetime : %s' % msg.scheduledDatetime)
print(' createdDatetime : %s' % msg.createdDatetime)
print(' recipients : %s\n' % msg.recipients)
except messagebird.client.ErrorException as e:
print('\nAn error occured while requesting a Message object:\n')
for error in e.errors:
print(' code : %d' % error.code)
print(' description : %s' % error.description)
print(' parameter : %s\n' % error.parameter)