Skip to content

BambooHR

BambooHR is a human resources software that helps HR teams manage employee data, hiring, onboarding, time tracking, payroll, performance management, and more in one platform.

Categories: hris

Type: bambooHr/v1


Connections

Version: 1

Basic Auth

Properties

NameLabelTypeDescriptionRequired
companyDomainCompany DomainSTRINGText before .bamboohr.com when logged in to BambooHR.true
usernameAPI KeySTRINGtrue

Actions

Create Employee

Name: createEmployee

Add a new employee.

Properties

NameLabelTypeDescriptionRequired
firstNameFirst NameSTRINGThe first name of the employee.true
lastNameLast NameSTRINGThe last name of the employee.true
employeeNumberEmployee NumberSTRINGThe employee number of the employee.false
jobTitleJob TitleSTRINGThe job title of the employee.false
locationLocationSTRINGThe employee’s current location.false
employmentHistoryStatusEmployee StatusSTRINGThe employment status of the employee.false
hireDateHire DateDATEThe date the employee was hired.false

Example JSON Structure

{
"label" : "Create Employee",
"name" : "createEmployee",
"parameters" : {
"firstName" : "",
"lastName" : "",
"employeeNumber" : "",
"jobTitle" : "",
"location" : "",
"employmentHistoryStatus" : "",
"hireDate" : "2021-01-01"
},
"type" : "bambooHr/v1/createEmployee"
}

Output

Type: OBJECT

Properties

NameTypeDescription
urlSTRINGThe URL to view the employee in the web app.
idSTRINGThe ID of the employee.

Output Example

{
"url" : "",
"id" : ""
}

Update Employee

Name: updateEmployee

Update an employee, based on employee ID.

Properties

NameLabelTypeDescriptionRequired
idEmployee IDSTRINGThe ID of the employee.true
firstNameUpdated First NameSTRINGThe updated first name of the employee.false
lastNameUpdated Last NameSTRINGThe updated last name of the employee.false
jobTitleUpdated Job TitleSTRINGThe updated job title of the employee.false
locationUpdated LocationSTRINGThe updated employee’s current location.false
employmentHistoryStatusUpdated Employee StatusSTRINGThe updated employment status of the employee.false
hireDateUpdated Hire DateDATEThe updated date the employee was hired.false

Example JSON Structure

{
"label" : "Update Employee",
"name" : "updateEmployee",
"parameters" : {
"id" : "",
"firstName" : "",
"lastName" : "",
"jobTitle" : "",
"location" : "",
"employmentHistoryStatus" : "",
"hireDate" : "2021-01-01"
},
"type" : "bambooHr/v1/updateEmployee"
}

Output

This action does not produce any output.

Get Employee

Name: getEmployee

Get employee data, based on employee ID.

Properties

NameLabelTypeDescriptionRequired
idEmployee IDSTRINGThe ID of the employee.true
fieldsnullARRAY
Items [STRING]
Fields you want to get from employee. See documentation for available fields.true

Example JSON Structure

{
"label" : "Get Employee",
"name" : "getEmployee",
"parameters" : {
"id" : "",
"fields" : [ "" ]
},
"type" : "bambooHr/v1/getEmployee"
}

Output

The output for this action is dynamic and may vary depending on the input parameters. To determine the exact structure of the output, you need to execute the action.

Update Employee File

Name: updateEmployeeFile

Update an employee file.

Properties

NameLabelTypeDescriptionRequired
idEmployee IDSTRINGThe ID of the employee.true
fileIdFile IDSTRING
Depends On id
The ID of the employee file being updated.true
nameUpdated Name Of The FileSTRINGUse if you want to rename the file.false
categoryIdUpdated Category IDSTRINGUse if you want to move the file to a different category.false
shareWithEmployeeUpdate Sharing The FileBOOLEAN
Options true, false
Use if you want to update whether this file is shared or not.false

Example JSON Structure

{
"label" : "Update Employee File",
"name" : "updateEmployeeFile",
"parameters" : {
"id" : "",
"fileId" : "",
"name" : "",
"categoryId" : "",
"shareWithEmployee" : false
},
"type" : "bambooHr/v1/updateEmployeeFile"
}

Output

This action does not produce any output.