GuidesAPI ReferenceChangelog
Changelog
added

v2.1.62

EOR: Create Worker

A new endpoint has been implemented to create an Employee of Record (EOR) worker with minimal required data. This EOR worker is automatically linked to the provided contract.

Use Case: Implement this endpoint to create an EOR worker and prepare them for the onboarding process in Deel. This is typically used when you already have a contract created and the worker's email address.

Endpoint: POST /rest/v2/eor/worker

API Reference: Create EOR Worker

curl --request POST \
     --url https://api.letsdeel.com/rest/v2/eor/worker \
     --header 'accept: application/json' \
     --header 'authorization: Bearer {YOUR_ORG_TOKEN}' \
     --data '{
  "data": {
    "email": "[email protected]",
    "contract_id": "mp4y66j"
  }
}'