Retrieve custom fields for organization
Returns all custom field values configured for the specified team in the organizational hierarchy, including each field’s inheritance status (whether the value is set directly on the team or inherited from a parent), and any pending change requests visible to the caller.
Token scopes: organizations:read
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/
Path parameters
team_id
Public ID (UUID) of the HRIS team/organization structure
Query parameters
limit
Max items per page (default 20, max 100)
cursor
Opaque cursor for pagination
Response
Custom field values retrieved successfully
data
Array of custom field values for the organization structure team
has_more
Whether more pages are available
next_cursor
Opaque cursor for the next page. Null if no more pages.
total_count
Total number of custom field values (across all pages)
Errors
400
Bad Request Error
401
Unauthorized Error
403
Forbidden Error
404
Not Found Error
500
Internal Server Error