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": {}
}
}'
Bearer authentication header of the form Bearer <token>
, where <token>
is your auth token.
Your Paragon Project ID
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": {}
}
}'