pm.emails.send(from_=..., to=[...], subject=..., html=..., text=...)
pm.emails.batch(emails=[...])
pm.emails.get(email_id)
pm.emails.cancel(email_id)
pm.sms.send(to=..., from_=..., body=...)
pm.sms.batch(from_=..., messages=[...])
pm.sms.get(sms_id)
pm.sms.list(limit=..., cursor=...)
pm.sms.analytics(days=...)
pm.sms_templates.create(name=..., body=...)
pm.sms_templates.list()
pm.sms_templates.get(template_id)
pm.sms_templates.update(template_id, body=...)
pm.sms_templates.remove(template_id)
pm.sms_templates.render(template_id, variables={...})
pm.sender_ids.create(sender_id=..., countries=[...], ...)
pm.sender_ids.list()
pm.sender_ids.update(sid_id, notes=...)
pm.domains.create(name=...)
pm.domains.list()
pm.domains.verify(domain_id)
pm.webhooks.create(url=..., events=[...])
pm.webhooks.list()
pm.suppressions.add(email=..., reason=...)
pm.suppressions.remove(email)