For AI agents: a documentation index is available at the root level at /llms.txt and /llms-full.txt. Append /llms.txt to any URL for a page-level index, or .md for the markdown version of any page.
SupportDeel Home
OverviewPlatformEmployer of RecordContractorsGlobal PayrollHREmbeddedDeel ITAPI ReferenceChangelog
OverviewPlatformEmployer of RecordContractorsGlobal PayrollHREmbeddedDeel ITAPI ReferenceChangelog
  • Resources
    • Blog
    • Community
    • API spec
  • Endpoints
    • PATCHProfiles
      • GET/ic/workers/invoices/:invoice_id/pdf
      • POSTComplete individual contractor profile setup
      • POSTCreate a new worker
      • GETGet invoice details by ID
      • GETList of worker compliance documents
      • GETRetrieve worker transaction history
      • POSTSet up worker legal entity
LogoLogo
SupportDeel Home
EndpointsWorkers

Complete individual contractor profile setup

POST
/onboarding/workers/individual
POST
/rest/v2/onboarding/workers/individual
$curl -X POST https://api.letsdeel.com/rest/v2/onboarding/workers/individual \
> -H "Authorization: Bearer <token>" \
> -H "Content-Type: application/json" \
> -d '{
> "data": {
> "zip": "10001",
> "city": "New York",
> "street": "101 Main St",
> "citizen": "US",
> "country": "US",
> "legal_status": "individual"
> }
>}'
1{
2 "data": {
3 "profile_id": 2033569,
4 "company_type": "individual",
5 "abn": "12345678901",
6 "ssn": "123456789",
7 "zip": "10001",
8 "city": "New York",
9 "phone": "+15551234567",
10 "street": "101 Main St",
11 "citizen": "US",
12 "country": "US",
13 "id_type": "passport",
14 "province": "NY",
15 "timezone": "America/New_York",
16 "personal_id": "AB1234567",
17 "legal_status": "individual",
18 "tax_residence": "US",
19 "onboarding_step": "PROFILE_COMPLETED",
20 "entity_tax_residence": "US"
21 }
22}

Complete the profile setup for independent contractors including address, tax details, and legal status in a single call during the IC-embedded onboarding flow. This operation requires a worker session token obtained via the worker session endpoint. Token scopes: worker:write

Was this page helpful?
Previous

Create a new worker

Next
Built with

Authentication

AuthorizationBearer
## Authentication The Deel API uses bearer tokens to authenticate requests. All API calls must be made over HTTPS — calls over plain HTTP or without authentication will fail. ```curl curl -X GET 'https://api.letsdeel.com/rest/v2/contracts' \ -H 'Authorization: Bearer YOUR-TOKEN-HERE' ``` [Learn more about authentication](/api/authentication)
OR
AuthorizationBearer

Standard OAuth2 security scheme based on https://swagger.io/docs/specification/authentication/

Request

Individual contractor setup details including address, tax information, and legal status.
dataobjectRequired

Response

Individual profile setup completed successfully.
dataobject

Errors

400
Bad Request Error
401
Unauthorized Error
403
Forbidden Error
404
Not Found Error
500
Internal Server Error

Authentication

The Deel API uses bearer tokens to authenticate requests. All API calls must be made over HTTPS — calls over plain HTTP or without authentication will fail.

1curl -X GET 'https://api.letsdeel.com/rest/v2/contracts' \
2 -H 'Authorization: Bearer YOUR-TOKEN-HERE'

Learn more about authentication