Skip to main content

HiBob Connector

HiBob HiBob is an HR platform for people management, performance, and engagement. This component allows managing employee data using the HiBob API, including employee profiles, work history, salary information, and bank account details.

API Documentation

This component was built using the HiBob API Reference

Connections

Basic Authentication

Authenticate using basic authentication.

Create a connection of type Basic Authentication to authenticate with the HiBob API using a Service User ID and token.

Prerequisites

  • A HiBob account with administrator access
  • Access to the Service Users configuration page in HiBob

Setup Steps

  1. Log in to the HiBob admin panel and navigate to the Service Users configuration page
  2. Click Create a New Service User
  3. Copy the Service User ID and Token immediately, as the token can only be viewed once
  4. Create a dedicated permission group for the service user:
    • Add the service user to the group
    • Configure the necessary permissions based on the API operations to perform
    • For basic employee data access, ensure the Default Employee Fields permissions are enabled
Administrator Access Required

If direct access to the HiBob admin panel is not available, contact a HiBob administrator to generate the credentials.

Configure the Connection

  • Enter the Service User ID from the HiBob admin panel
  • Enter the Token generated during service user creation
  • Set Use Sandbox to true to connect to the HiBob sandbox environment instead of production

Refer to the HiBob API Service Users documentation for additional details on permissions and access configuration.

InputCommentsDefault
Service User IDThe HiBob API Service User ID.
TokenThe HiBob API token.
Use SandboxWhen true, connects to the HiBob sandbox environment instead of production.false

OAuth 2.0

Authenticate using OAuth 2.0.

Create a connection of type OAuth 2.0 to authenticate with HiBob using the OAuth 2.0 Authorization Code flow.

Prerequisites

  • A HiBob account with access to the Developer Portal
  • An OAuth application registered in the HiBob Developer Portal

Setup Steps

  1. Navigate to the HiBob Developer Portal and create or select an OAuth application
  2. In the application's OAuth section, locate the App Installation URL (this is the Authorize URL)
  3. Copy the Client ID and Client Secret from the application settings
  4. Configure the required scopes under Manage Scopes in the Developer Portal
  5. Set the OAuth callback URL to https://oauth2.integrations.acme.com/callback in the application's redirect URI settings

Configure the Connection

  • Enter the Authorize URL (the App Installation URL from the Developer Portal)
  • Enter the Client ID and Client Secret from the application settings
  • For Scopes, enter the required scopes separated by spaces. Configure scopes in the HiBob Developer Portal under Manage Scopes

Refer to the HiBob API documentation for additional details on available scopes and permissions.

This connection uses OAuth 2.0, a common authentication mechanism for integrations. Read about how OAuth 2.0 works here.

InputCommentsDefault
Authorize URLThe App Installation URL from the HiBob Developer Portal. Navigate to the app's OAuth section to find this URL.
ScopesSpace-separated OAuth 2.0 scopes. Configure in the HiBob Developer Portal under Manage Scopes.
Client IDThe Client ID from the HiBob Developer Portal.
Client SecretThe Client Secret from the HiBob Developer Portal.
Use SandboxWhen true, connects to the HiBob sandbox environment instead of production.false

Triggers

Webhook

Receive and validate webhook requests from HiBob for manually configured webhook subscriptions.

InputCommentsDefault
App SecretThe secret key used to validate webhook signatures from HiBob.

Actions

Add List Item

Adds a new item to an existing company list.

InputCommentsDefault
ConnectionThe HiBob connection to use.
List NameThe name of the list to add the item to.
Item NameThe name of the new list item.
Parent IDID of the new hierarchy parent node.

Complete Task

Marks a task as completed.

InputCommentsDefault
ConnectionThe HiBob connection to use.
Task IDThe ID of the task to complete.

Create Custom Table Entry

Creates a new entry in a custom table for an employee.

InputCommentsDefault
ConnectionThe HiBob connection to use.
Employee IDThe ID of the employee to create the custom table entry for.
Custom Table IDThe unique identifier for the custom table.
Entry DataThe data for the custom table entry in JSON format.

Create Employee

Creates a new employee with the specified fields.

InputCommentsDefault
ConnectionThe HiBob connection to use.
First NameThe given name of the employee.
SurnameThe last name or family name of the employee.
EmailThe work email address assigned to the employee.
SiteThe office location or branch assigned to the employee.
Start DateThe date when the employee begins employment. Format: YYYY-MM-DD.

Create New Field

Creates a new custom field in HiBob.

InputCommentsDefault
ConnectionThe HiBob connection to use.
Field NameThe name of the new field to create.
CategoryThe grouping category under which the field is organized.
Field TypeThe data type of the new field.
DescriptionA description of the field's purpose.
HistoricalWhen true, this field keeps the history of its values, each being active starting from a certain date.false

Delete Custom Table Entry

Deletes an existing entry from a custom table for an employee.

InputCommentsDefault
ConnectionThe HiBob connection to use.
Employee IDThe ID of the employee whose custom table entry will be deleted.
Custom Table IDThe ID of the custom table containing the entry to delete.
Entry IDThe ID of the custom table entry to delete.

Delete Field

Deletes an existing custom field from HiBob.

InputCommentsDefault
ConnectionThe HiBob connection to use.
Field IDThe ID of the field to delete.

Delete File From Folder

Deletes a file from an employee's document folder.

InputCommentsDefault
ConnectionThe HiBob connection to use.
Employee IDThe ID of the employee whose file to delete.
Document IDThe ID of the document to delete.
Folder TypeThe type of folder containing the file to delete.
Folder IDRequired if folder type is 'Custom'. The ID of the custom folder containing the file.

Delete List Item

Deletes an existing item from a company list.

InputCommentsDefault
ConnectionThe HiBob connection to use.
List NameThe name of the list containing the item to delete.
Item IDThe ID of the list item to delete.

Download Employee Documents

Downloads a list of documents for an employee.

InputCommentsDefault
ConnectionThe HiBob connection to use.
Employee IDThe ID of the employee whose documents to download.

Get Company List

Retrieves a specific named list from the company.

InputCommentsDefault
ConnectionThe HiBob connection to use.
List NameThe name of the list to retrieve.
Include ArchivedWhen true, includes archived items in the response.false

Get Custom Table Metadata

Retrieves metadata for a specific custom table.

InputCommentsDefault
ConnectionThe HiBob connection to use.
Custom Table IDThe ID of the custom table to retrieve metadata for.

Get Employee Tasks

Retrieves all tasks assigned to a specific employee.

InputCommentsDefault
ConnectionThe HiBob connection to use.
Employee IDThe Employee ID as pulled from the database, or from the URL In Bob when viewing the employee.
Task StatusFilter tasks by open / closed status. Not sending any value will return all tasks.

List Company Lists

Retrieves all named lists in the company.

InputCommentsDefault
ConnectionThe HiBob connection to use.
Include ArchivedWhen true, includes archived items in the response.false

List Employee Fields

Retrieves a list of all employee fields in the company.

InputCommentsDefault
ConnectionThe HiBob connection to use.

List Folders

Retrieves a list of all document folders in the system.

InputCommentsDefault
ConnectionThe HiBob connection to use.

List Open Tasks

Retrieves a list of all open tasks in the system.

InputCommentsDefault
ConnectionThe HiBob connection to use.

Raw Request

Sends a raw HTTP request to the HiBob API.

InputCommentsDefault
ConnectionThe HiBob connection to use.
URLInput the path only (/docs/folders/metadata). The base URL is determined by the connection's sandbox setting (https://api.hibob.com/v1 for production, https://api.sandbox.hibob.com/v1 for sandbox). For example, to connect to https://api.hibob.com/v1/docs/folders/metadata, only /docs/folders/metadata is entered in this field.
MethodThe HTTP method to use.
DataThe HTTP body payload to send to the URL.
Form DataThe Form Data to be sent as a multipart form upload.
File DataFile Data to be sent as a multipart form upload.
File Data File NamesFile names to apply to the file data inputs. Keys must match the file data keys above.
Query ParameterA list of query parameters to send with the request. This is the portion at the end of the URL similar to ?key1=value1&key2=value2.
HeaderA list of headers to send with the request.
Response TypeThe type of data you expect in the response. You can request json, text, or binary data.json
TimeoutThe maximum time that a client will await a response to its request
Retry Delay (ms)The delay in milliseconds between retries. This is used when 'Use Exponential Backoff' is disabled.0
Retry On All ErrorsIf true, retries on all erroneous responses regardless of type. This is helpful when retrying after HTTP 429 or other 3xx or 4xx errors. Otherwise, only retries on HTTP 5xx and network errors.false
Max Retry CountThe maximum number of retries to attempt. Specify 0 for no retries.0
Use Exponential BackoffSpecifies whether to use a pre-defined exponential backoff strategy for retries. When enabled, 'Retry Delay (ms)' is ignored.false

Read Employee Fields

Retrieves employee data for a specific employee by ID or email.

InputCommentsDefault
ConnectionThe HiBob connection to use.
Employee IdentifierThe employee's ID or email address to retrieve data for.
FieldsAn optional list of fields to be returned in the response. When not specified, a default set of fields and categories are returned.
Human ReadableA flag that determines the data format to be returned in the response payload. Use this flag to convert "machine format" numeric IDs, such as "1644513820829" to the "human readable" values.

Revoke Employee Access

Revokes access to HiBob for a specific employee.

InputCommentsDefault
ConnectionThe HiBob connection to use.
Employee IdentifierThe employee's ID or email address to revoke access for.

Search Employee

Searches for employees based on specified criteria.

InputCommentsDefault
ConnectionThe HiBob connection to use.
FieldsAn optional list of fields to be returned in the response. When not specified, a default set of fields and categories are returned.
FiltersAn optional filter based on a field and a condition to filter the results.
Show InactiveWhen true, includes inactive employees in the response.false
Human ReadableA flag that determines the data format to be returned in the response payload. Use this flag to convert "machine format" numeric IDs, such as "1644513820829" to the "human readable" values.

Terminate Employee

Terminates a specific employee with a given termination date and reason.

InputCommentsDefault
ConnectionThe HiBob connection to use.
Employee IdentifierThe backend-id of the Employee to terminate. Retrieve this ID from the database.
Termination DateThe date when the employee's termination takes effect (YYYY-MM-DD format).
Termination ReasonThe ID of the 'terminationReason' list entry.
ReasonThe ID of the 'lifecycleReasonType' list entry.
Notice PeriodThe duration of the notice period before the employee's departure. Provide as a JSON object with 'length' and 'unit' properties.
Last Day of WorkThe final working date before the employee's departure. Format: YYYY-MM-DD.

Update Custom Table Entry

Updates an existing entry in a custom table for an employee.

InputCommentsDefault
ConnectionThe HiBob connection to use.
Employee IDThe ID of the employee whose custom table entry will be updated.
Custom Table IDThe ID of the custom table containing the entry to update.
Entry IDThe ID of the custom table entry to update.
Entry DataThe updated data for the custom table entry in JSON format.

Update Employee

Updates employee data for a specific employee by ID or email.

InputCommentsDefault
ConnectionThe HiBob connection to use.
Employee IdentifierThe employee's ID to update.
FieldsThe fields to update for the employee. This should be a JSON object containing the field paths and their new values.

Update Employee Email

Updates the email address for a specific employee.

InputCommentsDefault
ConnectionThe HiBob connection to use.
Employee IdentifierThe employee's ID to update the email address for.
New Email AddressThe new email address for the employee.

Update Field

Updates an existing custom field in HiBob.

InputCommentsDefault
ConnectionThe HiBob connection to use.
Field IDThe ID of the field to update.
Field NameThe new name for the field.
DescriptionA new description for the field.

Update List Item

Updates an existing item in a company list.

InputCommentsDefault
ConnectionThe HiBob connection to use.
List NameThe name of the list containing the item to update.
Item IDThe ID of the list item to update.
Item NameThe new name for the list item.
Parent IDThe ID of the new hierarchy parent node.

Upload File From URL

Uploads a file from a URL to an employee's document folder.

InputCommentsDefault
ConnectionThe HiBob connection to use.
Employee IDThe ID of the employee to upload the file for.
Folder TypeThe type of folder to upload the file to.
Document NameThe display name for the uploaded document, including file extension.
Document URLThe URL pointing to the document to upload.
Folder IDRequired if folder type is 'Custom'. The ID of the custom folder to upload to.
TagsAn array of tags to attach to the document in Bob.

Upload File To Folder

Uploads a file directly to an employee's document folder.

InputCommentsDefault
ConnectionThe HiBob connection to use.
Employee IDThe ID of the employee to upload the file for.
Folder TypeThe type of folder to upload the file to.
File DataThe binary data of the file to upload. This should be a reference to a previous action that returns file data.
File NameThe desired file name for the uploaded document, including extension.
Folder IDRequired if folder type is 'Custom'. The ID of the custom folder to upload to.