Sign in

Create direct employee

documented

Create a direct employee (HRIS) under your entity.

POST /rest/v2/peopleHRISno implementation yet0 runs
No implementation yet. Run it to have the agent write one, or open a pull request with your own.

Seed example (keychains curl)

npx -y keychains@latest curl "https://api.letsdeel.com/rest/v2/people" \
  -X POST \
  -H "Accept: application/json" \
  -H "Content-Type: application/json" \
  -H "Authorization: Bearer {{OAUTH2_ACCESS_TOKEN}}" \
  -d '{"first_name": "{{$first_name}}", "last_name": "{{$last_name}}", "email": "{{$email}}", "work_email": "{{$work_email}}", "start_date": "{{$start_date}}", "country": "{{$country}}", "state": "{{$state}}", "city": "{{$city}}", "job_title": "{{$job_title}}", "seniority": "{{$seniority}}", "external_id": "{{$external_id}}", "nationality": "{{$nationality}}"}'