Building with ActionKit
Reference
- Asana
- Azure DevOps
- BambooHR
- POSTHr Create Employee
- POSTHr Update Employee
- POSTHr Get Employee By ID
- POSTHr Get Employee Directory
- POSTHr Create Time Off Request
- POSTHr Change Request Status
- POSTHr Adjust Time Off Balance For Employee
- POSTHr Get Time Off Requests For Employee
- POSTHr Get Time Off Types
- POSTHr Get Field List
- POSTHr Add List Field Value
- POST
- Box
- ClickUp
- Confluence
- Facebook Ads
- GitHub
- Gmail
- Google Calendar
- Google Drive
- Google Sheets
- HubSpot
- Jira
- Linear
- Marketo
- Microsoft Outlook
- Microsoft Teams
- Notion
- Salesforce
- Shopify
- Slack
- Stripe
- Trello
- Zendesk
- Zoom
BambooHR
Hr Create Employee
POST
/
projects
/
{project_id}
/
actions
/
#BAMBOO_HR_CREATE_EMPLOYEE
curl --request POST \
--url 'https://actionkit.useparagon.com/projects/{project_id}/actions/#BAMBOO_HR_CREATE_EMPLOYEE' \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '{
"action": "BAMBOO_HR_CREATE_EMPLOYEE",
"parameters": {
"firstName": "<string>",
"lastName": "<string>",
"dateOfBirth": "<string>",
"employeeNumber": "<string>",
"gender": "<string>",
"socialSecurity": "<string>",
"maritalStatus": "<string>",
"hireDate": "<string>",
"address": "<string>",
"city": "<string>",
"state": "<string>",
"country": "<string>",
"employmentHistory": "contractor",
"exempt": "exempt",
"payType": "hourly",
"payRate": "<string>",
"payPer": "hour",
"location": "<string>",
"department": "<string>",
"division": "<string>",
"additionalFields": {}
}
}'
Authorizations
Bearer authentication header of the form Bearer <token>
, where <token>
is your auth token.
Path Parameters
Your Paragon Project ID
Body
application/json
Response
200
Success
Was this page helpful?
curl --request POST \
--url 'https://actionkit.useparagon.com/projects/{project_id}/actions/#BAMBOO_HR_CREATE_EMPLOYEE' \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '{
"action": "BAMBOO_HR_CREATE_EMPLOYEE",
"parameters": {
"firstName": "<string>",
"lastName": "<string>",
"dateOfBirth": "<string>",
"employeeNumber": "<string>",
"gender": "<string>",
"socialSecurity": "<string>",
"maritalStatus": "<string>",
"hireDate": "<string>",
"address": "<string>",
"city": "<string>",
"state": "<string>",
"country": "<string>",
"employmentHistory": "contractor",
"exempt": "exempt",
"payType": "hourly",
"payRate": "<string>",
"payPer": "hour",
"location": "<string>",
"department": "<string>",
"division": "<string>",
"additionalFields": {}
}
}'
Assistant
Responses are generated using AI and may contain mistakes.