freakboy3742 / pyxero

Python API for accessing the REST API of the Xero accounting tool.
BSD 3-Clause "New" or "Revised" License
280 stars 209 forks source link

Get Organisation's Actions #318

Open willhumble opened 3 years ago

willhumble commented 3 years ago

Add the ability to get the Organisations Actions, as per API Docs:

Actions

def getXeroOrganisationActions(siteId):
    creds = getCredentials(siteId)
    xero = Xero(creds)
    list = xero.organisations.actions()
    return list