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 Time Off Request
POST
/
projects
/
{project_id}
/
actions
/
#BAMBOO_HR_CREATE_TIME_OFF_REQUEST
curl --request POST \
--url 'https://actionkit.useparagon.com/projects/{project_id}/actions/#BAMBOO_HR_CREATE_TIME_OFF_REQUEST' \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '{
"action": "BAMBOO_HR_CREATE_TIME_OFF_REQUEST",
"parameters": {
"employeeId": "<string>",
"timeOffTypeId": "<string>",
"startDate": "<string>",
"endDate": "<string>",
"status": "approved",
"amount": "<string>",
"employeeNote": "<string>",
"managerNote": "<string>"
}
}'
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_TIME_OFF_REQUEST' \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '{
"action": "BAMBOO_HR_CREATE_TIME_OFF_REQUEST",
"parameters": {
"employeeId": "<string>",
"timeOffTypeId": "<string>",
"startDate": "<string>",
"endDate": "<string>",
"status": "approved",
"amount": "<string>",
"employeeNote": "<string>",
"managerNote": "<string>"
}
}'
Assistant
Responses are generated using AI and may contain mistakes.