Skip to main content

Wrapper to query Help Scout v2 API

Project description

Help Scout API client

This package contains a wrapper to query Help Scout's API. The package tries to be as general and assume as little as possible about the API. Therefore, it will allow any endpoint to be requested and objects and types will be created on the fly.

Information about the available endpoints, objects and other stuff can be found on the API's documentation. The client contains as little internal knowledge of the API as possible, mostly authentication, pagination and how are objects returned.

In order to handle pagination calls to API are done inside a generator. As a consequence, even post and deletes have to be "nexted" if using the hit_ method.

Installation

The package can be installed cloning the repository and doing python setup.py install or pip install ..

It can also be install from pypi.org doing pip install python-helpscout-v2.

Authentication

In order to use the API you need an app id and app secret.

More about credentials can be found in helpscout's documentation.

General use

The general use is by instantiating a client and then hitting the API by doing client.<endpoint>.<method>(<resource_id>, <params>). Where:

  • Endpoint is one of the endpoints defined in the API's documentation.
  • Method is one of get, post, patch, put or delete as defined in the API.
  • Resource id can be None or the id of the specific resource to access, update or delete. E.g.: a conversation id.
  • Params can be None, a string or a dictionary with the parameters to access in the get method or the data to send otherwise.

To access attributes of specific resources, like the tags of a conversation, you can do: client.<endpoint>[<resource_id>].<attribute>.<method>(<resource_id>, <params>).

Example: client.conversations[212109].threads.get()

Examples

Listing all users

> from helpscout import HelpScout
> hs = HelpScout(app_id='ax0912n', app_secret='axon129')
> users = hs.users.get()
> users[0]
User(id=12391,
     firstName="John",
     lastName="Doe",
     email="john.doe@gmail.com",
     role="user",
     timezone="America/New_York",
     createdAt="2019-01-03T19:00:00Z",
     updatedAt="2019-05-20T18:00:00Z",
     type="user",
     mention="johnny",
     initials="JD",
     _links={'self': {'href': 'https://api.helpscout.net/v2/users/12391'}})
> users[1].id
9320

Hitting the API directly to get all mailboxes

> from helpscout.client import HelpScout
> hs = HelpScout(app_id='laknsdo', app_secret='12haosd9')
> for mailbox in hs.hit('mailboxes', 'get'):
>      print(mailbox)
{'mailboxes': [
   {'id': 1930,
    'name': 'Fake Support',
    'slug': '0912301u',
    'email': 'support@fake.com',
    'createdAt': '2018-12-20T20:00:00Z',
    'updatedAt': '2019-05-01T16:00:00Z',
    '_links': {
      'fields': {'href': 'https://api.helpscout.net/v2/mailboxes/1930/fields/'},
      'folders': {'href': 'https://api.helpscout.net/v2/mailboxes/1930/folders/'},
      'self': {'href': 'https://api.helpscout.net/v2/mailboxes/1930'}
    }
   }
 ]
}

Hitting the API directly to get all mailboxes but handling requests with pagination as iteration goes on

> from helpscout.client import HelpScout
> hs = HelpScout(app_id='laknsdo', app_secret='12haosd9')
> for mailbox in hs.hit_('mailboxes', 'get'):
>      print(mailbox)
{'mailboxes': [
   {'id': 1930,
    'name': 'Fake Support',
    'slug': '0912301u',
    'email': 'support@fake.com',
    'createdAt': '2018-12-20T20:00:00Z',
    'updatedAt': '2019-05-01T16:00:00Z',
    '_links': {
      'fields': {'href': 'https://api.helpscout.net/v2/mailboxes/1930/fields/'},
      'folders': {'href': 'https://api.helpscout.net/v2/mailboxes/1930/folders/'},
      'self': {'href': 'https://api.helpscout.net/v2/mailboxes/1930'}
    }
   }
 ]
}

Hitting the API directly to get a specific mailbox

> from helpscout.client import HelpScout
> hs = HelpScout(app_id='laknsdo', app_secret='12haosd9')
> for mailbox in hs.hit('mailboxes', 'get', resource_id=1930):
>      print(mailbox)
{'id': 1930,
 'name': 'Fake Support',
 'slug': '0912301u',
 'email': 'support@fake.com',
 'createdAt': '2018-12-20T20:00:00Z',
 'updatedAt': '2019-05-01T16:00:00Z',
 '_links': {
   'fields': {'href': 'https://api.helpscout.net/v2/mailboxes/1930/fields/'},
   'folders': {'href': 'https://api.helpscout.net/v2/mailboxes/1930/folders/'},
   'self': {'href': 'https://api.helpscout.net/v2/mailboxes/1930'}
 }
}

Hitting the API directly to get a specific mailbox dictionary style

In this case, you will have to select the first element of the list yourself, as it is not quite clear if one or more elements should be expected from the api depending on the endpoint.

> from helpscout.client import HelpScout
> hs = HelpScout(app_id='laknsdo', app_secret='12haosd9')
> print(hs.mailboxes[1930].get())
Mailbox(
 id=1930,
 name='Fake Support',
 slug='0912301u',
 email='support@fake.com',
 createdAt='2018-12-20T20:00:00Z',
 updatedAt='2019-05-01T16:00:00Z',
 _links={
   'fields': {'href': 'https://api.helpscout.net/v2/mailboxes/1930/fields/'},
   'folders': {'href': 'https://api.helpscout.net/v2/mailboxes/1930/folders/'},
   'self': {'href': 'https://api.helpscout.net/v2/mailboxes/1930'}
 }
)

Listing conversations using a dictionary parameters

> from helpscout.client import HelpScout
> hs = HelpScout(app_id='asd12', app_secret='onas912')
> params = {'status': 'active'}
> conversations = hs.conversations.get(params=params)

Listing conversations using a string with parameters

> from helpscout.client import HelpScout
> hs = HelpScout(app_id='asdon123', app_secret='asdoin1')
> params = 'query=(createdAt:[2019-06-20T00:00:00Z TO 2019-06-22T23:59:59Z])'
> conversations = hs.conversations.get(params=params)

Deleting a conversation

> from helpscout.client import HelpScout
> hs = HelpScout(app_id='asdon123', app_secret='asdoin1')
> conversation_id = 10
> hs.conversations.delete(resource_id=conversation_id)

Requesting a pre-made report

> from helpscout.client import HelpScout
> hs = HelpScout(app_id='asdon123', app_secret='asdoin1')
> report_url = 'reports/happiness?start=2019-06-01T00:00:00Z&end=2019-06-15:00:00Z'
> next(hs.hit_(report_url, 'get'))
...

or

> from helpscout.client import HelpScout
> hs = HelpScout(app_id='asdon123', app_secret='asdoin1')
> report_url = 'reports/happiness?start=2019-06-01T00:00:00Z&end=2019-06-15:00:00Z'
> hs.hit(report_url, 'get')
...

Adding tags to a conversation

> from helpscout import HelpScout
> helpscout_client = HelpScout(app_id='ax0912n', app_secret='axon129')
> conversation_id = 999
> endpoint = 'conversations/%s/tags' % conversation_id
> data = {'tags': conversation_tags}
> helpscout_client.hit(endpoint, 'put', data=data)

or

> from helpscout import HelpScout
> helpscout_client = HelpScout(app_id='ax0912n', app_secret='axon129')
> conversation_id = 999
> endpoint = 'conversations/%s/tags' % conversation_id
> data = {'tags': conversation_tags}
> next(helpscout_client.hit_(endpoint, 'put', data=data))

or

> from helpscout import HelpScout
> helpscout_client = HelpScout(app_id='ax0912n', app_secret='axon129')
> conversation_id = 999
> data = {'tags': conversation_tags}
> helpscout_client.conversations[999].tags.put(data=data)

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

python-helpscout-v2-2.0.0.tar.gz (15.9 kB view details)

Uploaded Source

Built Distribution

python_helpscout_v2-2.0.0-py2.py3-none-any.whl (10.6 kB view details)

Uploaded Python 2 Python 3

File details

Details for the file python-helpscout-v2-2.0.0.tar.gz.

File metadata

  • Download URL: python-helpscout-v2-2.0.0.tar.gz
  • Upload date:
  • Size: 15.9 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.13.0 pkginfo/1.5.0.1 requests/2.22.0 setuptools/41.0.1 requests-toolbelt/0.9.1 tqdm/4.32.2 CPython/3.7.4

File hashes

Hashes for python-helpscout-v2-2.0.0.tar.gz
Algorithm Hash digest
SHA256 a41fbb4569ebfdf246c08012c53b3e0162d5d22955b93d455310b436de08cb4d
MD5 65dd308f35eb424151afe345765fe2a5
BLAKE2b-256 b130e09568c13952148976413143d542f3c3b8b49254e5c9740af913e3c3d324

See more details on using hashes here.

File details

Details for the file python_helpscout_v2-2.0.0-py2.py3-none-any.whl.

File metadata

  • Download URL: python_helpscout_v2-2.0.0-py2.py3-none-any.whl
  • Upload date:
  • Size: 10.6 kB
  • Tags: Python 2, Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.13.0 pkginfo/1.5.0.1 requests/2.22.0 setuptools/41.0.1 requests-toolbelt/0.9.1 tqdm/4.32.2 CPython/3.7.4

File hashes

Hashes for python_helpscout_v2-2.0.0-py2.py3-none-any.whl
Algorithm Hash digest
SHA256 6d2c883f313c6caca44ec5a9ce0b1dc31b3ebd19c650d44b06066bc3d9b4708c
MD5 3410daa13431337df94c08172f2e702a
BLAKE2b-256 97fb8908c293ab84dc7fb7c212417529afa182a3d132c7a22cd84c07c5599a3d

See more details on using hashes here.

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page