Skip to content
Yaroslav Surzhikov edited this page Aug 7, 2020 · 6 revisions

Quick start

Driver init

from hibob import Driver

driver = Driver(
    api_token="YOUR_TOKEN_HERE"
)

Endpoints usage

Each endpoint is represented with property of driver instance.

For example people endpoint usage:

people_list = driver.people.list()

For detailed info check other wiki pages - each of them contains description and usage of implemented methods and properties. Reference links are included too.