Files
notifications-admin/app/notify_client/inbound_number_client.py

22 lines
706 B
Python
Raw Normal View History

2017-08-08 10:24:54 +01:00
from app.notify_client import NotifyAdminAPIClient
2017-08-08 10:24:54 +01:00
class InboundNumberClient(NotifyAdminAPIClient):
def __init__(self):
super().__init__("a" * 73, "b")
def init_app(self, app):
self.base_url = app.config['API_HOST_NAME']
self.service_id = app.config['ADMIN_CLIENT_USER_NAME']
self.api_key = app.config['ADMIN_CLIENT_SECRET']
def get_available_inbound_sms_numbers(self):
return self.get(url='/inbound-number/available')
2017-08-10 10:29:31 +01:00
def get_all_inbound_sms_number_service(self):
return self.get('/inbound-number')
2017-08-10 10:29:31 +01:00
def get_inbound_sms_number_for_service(self, service_id):
return self.get('/inbound-number/service/{}'.format(service_id))