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

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Path Parameters

project_id
string
required

Your Paragon Project ID

Body

application/json

Response

200

Success