Commit f75bde1c authored by Helperhaps's avatar Helperhaps

add api

parent 9e6d7897
......@@ -75,7 +75,7 @@ __all__ = [
schedulepayload,
]
__version__ = '3.3.0'
__version__ = '3.3.2'
VERSION = tuple(map(int, __version__.split('.')))
# Silence urllib3 INFO logging by default
......
......@@ -43,6 +43,11 @@ class Schedule(object):
result = self.send("DELETE", url)
return result
def get_msg_ids(self, schedule_id):
url = common.BASE_SCHEDULEURL + schedule_id + '/msg_ids'
body = None
result = self.send("GET", url, body)
return result
class ScheduleResponse(object):
"""Response to a successful device request send.
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment