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
      • GETList of job scope templates for EOR contracts
      • POSTRequest job scope validation
    • PATCHProfiles
LogoLogo
SupportDeel Home
EndpointsEor Job Scopes

List of job scope templates for EOR contracts

GET
/eor/job-scopes
GET
/rest/v2/eor/job-scopes
$curl https://api.letsdeel.com/rest/v2/eor/job-scopes \
> -H "Authorization: Bearer <token>" \
> -H "Content-Type: application/json"
1[
2 {
3 "id": "5ad8db95-3791-4e4d-b533-6faed2f5a3d8",
4 "team": {
5 "id": "a1b2c3d4-e5f6-7890-abcd-ef1234567890",
6 "name": "Product Design Team"
7 },
8 "title": "3D Artist",
9 "content": "Responsible for creating detailed 3D models and animations for product visualization and marketing materials. Collaborates with the design and marketing teams to ensure visual consistency and quality. Requires proficiency in Blender, Maya, or similar software.",
10 "personal": "profile_987654321",
11 "created_at": "2023-11-15T10:22:35.123Z",
12 "created_by": {
13 "id": "d4e5f6a7-b890-1234-cdef-56789abcdef0",
14 "name": "Alice Johnson"
15 },
16 "updated_at": "2024-04-01T08:45:12.456Z",
17 "updated_by": {
18 "id": "18cd9e12-e9d5-431c-bc51-9211c3e8cabf",
19 "name": "John Doe"
20 },
21 "source_type": "MANUAL",
22 "organization_id": "org_1234567890abcdef"
23 }
24]

Returns predefined and custom job scope templates available for EOR contracts, optionally filtered to templates belonging to a specific team. Token scopes: organizations:read

Was this page helpful?
Previous

Request job scope validation

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/

Query parameters

teamstringOptional
Team public id

Response

Successfull response
idstring
Unique identifier for the job scope
teamobject
titlestring
Title or name of the job scope
contentstring
Detailed description of the job scope
personalstring or null
Identifier from the team or the profile, whichever is available
created_atstring
Timestamp of when the job scope was created
created_byobject
updated_atstring
Timestamp of when the job scope was last updated
updated_byobject
source_typeenum
Source of the job scope data
Allowed values:
organization_idstring or null
Identifier of the associated organization, if any

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

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