Skip to content

josuemontano/SupportBee-python-wrapper

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

26 Commits
 
 
 
 
 
 
 
 

Repository files navigation

SupportBee API python wrapper

A Python wrapper around the SupportBee API. Please refer to the official API docs for details about its API. This project was developed as part of SupportBee's hiring process, one of the best I've ever seen.

Fetch tickets

You can use all the parametes defined in the documentation as long as they are named exactly the same as in the docs.

from supportbee.client.tickets import TicketsClient

# Fetch collection of tickets
client = TicketsClient(company='your_company', api_token='your_api_token')
tickets = client.get_collection()
tickets = client.get_collection(per_page=5, page=2)
tickets = client.get_collection(archived=True)

Run tests

Tests are written with pytest. Just run <VENV>/bin/py.test from console.

About

Python API wrapper around SupportBee API

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages