Skip to main content

HiBob

With HiBob modules in Make, you can:

  • watch all events

  • complete a task, retrieve an employee, and make an API call

  • list all employees, employee history, and tasks

To get started with HiBob, create an account at www.hibob.com.

Connect HiBob to Make

To connect HiBob app, you need to obtain the API key and insert it into the HiBob scenario.

  1. Log in to your HiBob account.

  2. Click Profile Icon > API access and copy the access token to a safe place.

    HiBob_2.png
  3. Log in to your Make account, insert a HiBob module in your scenario, and click the Add button next to the Connection field.

    HiBob_3.png
  4. Optional: In the Connection name field, enter a name for the connection.

  5. In the API Key field, enter the access token copied in step 2 and click Save.

You have successfully established the connection. You can now edit your scenario and add more HiBob modules. If your connection needs reauthorization, follow the connection renewal steps here.

Triggers

You can watch all events using the following modules.

Triggers when an event occurs. Events are set in HiBob > Settings > Integrations > Webhooks.

Connection

Establish a connection to your HiBob account.

Webhook name

Enter a name for the webhook.

To set up the webhook, see the section, Setting up HiBob webhooks.

Actions

You can complete a task, retrieve an employee, and make an API call using the following modules.

Performs an arbitrary authorized API call.

Note

For the list of available endpoints, refer to the HiBob API documentation.

Connection

Establish a connection to your HiBob account.

URL

Enter a path relative to https://api.hibob.com. For example, /v1/people.

Method

GET

to retrieve information for an entry.

POST

to create a new entry.

PUT

to update/replace an existing entry.

PATCH

to make a partial entry update.

DELETE

to delete an entry.

Headers

Enter the desired request headers. You don't have to add authorization headers; we already did that for you.

Query String

Enter the request query string.

Body

Enter the body content for your API call.

Example of use - List Tasks

The following API call returns all your tasks.

URL: /v1/my/tasks

Method: GET

HiBob_4.png

Matches of the search can be found in the module's Outputunder Bundle > Body >tasks

Our example returned 4 tasks.

HiBob_5.png

Retrieves an employee by their ID or email address.

Connection

Establish a connection to your HiBob account.

Employee ID or Email address

Select either the Employee ID or Email address whose details you want to retrieve.

Include Human Readable Data

Select whether to include human-readable data.

Marks tasks as completed.

Connection

Establish a connection to your HiBob account.

Task ID

Select or map the Task ID you want to complete.

Searches

You can list all employees, employee's history, and tasks using the following modules.

Lists employees of the company. The data is filtered based on the access level of the logged-in user. Only viewable categories are returned.

Connection

Establish a connection to your HiBob account.

Include Inactive Employees

Select whether to include inactive employees.

Include Human Readable Data

Select whether to include human-readable data.

Limit

Set the maximum number of employees Make will return during one execution cycle. The default value is 10.

Lists employee's work history, employment, life-cycle status, or salary.

Connection

Establish a connection to your HiBob account.

Employee ID

Select or map the Employee ID whose history you want to list.

Select

Select a parameter to list:

  • Work History

  • Employment History

  • Life-cycle Status History

  • Salary History

Limit

Set the maximum number of employees Make will return during one execution cycle. The default value is 10.

Lists tasks based on selected criteria.

Connection

Establish a connection to your HiBob account.

Select Group of Tasks

Select a task to list:

  • All open tasks in the company

  • Only my tasks

  • Specific employee tasks

Employee ID

Select or map the Employee ID whose tasks you want to list.

Tasks Status

Select the task status:

  • Open

  • Closed

Note

Leave empty if you want to list all tasks.

Limit

Set the maximum number of tasks Make will return during one execution cycle. The default value is 10.

Setting up HiBob webhooks

This app uses webhooks to trigger a scenario when an event occurs instantly.

To set up the webhooks:

  1. Open the Watch All Events module, enter a name for the webhook, establish a connection, click Save, and copy the URL address to your clipboard. Click OK.

    HiBob_7.png
  2. Log in to your HiBob account, and click Settings > Automation > Webhook.

    HiBob_8.png
  3. To create a new webhook, click Add a new Subscriber. Enter a name and URL copied in step 1 in the URL field, and select the events you want to watch.

  4. Click Save.

    HiBob_6.png

You have successfully set up the webhooks.