List Legal Entity Registration Documents

Lists the registration documents required from a legal entity, together with what has been submitted and how far through review it is. Use this to find out what is still outstanding before a first payroll, or to reconcile submission status. Requirements that have not been answered yet are included with a null `id`. **Token scopes**: `legal-entity: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

legal_entity_idstringRequiredformat: "uuid"
Public UUID of the legal entity.

Query parameters

limitintegerOptional1-100Defaults to 20
Maximum number of results to return per page.
cursorstringOptionalformat: "^[A-Za-z0-9_-]+$"<=2048 characters

Pagination cursor returned as next_cursor by the previous response. Omit for the first page.

searchstringOptional<=255 characters

Free-text search on the requirement name.

statuslist of enumsOptional
Filter by submission status. Repeat the parameter to pass several values.
product_typelist of enumsOptional
Filter by the product the requirement applies to. Repeat the parameter to pass several values.
Allowed values:
requirement_idlist of stringsOptional
Filter to specific requirements. Repeat the parameter to pass several values.
only_archivedbooleanOptionalDefaults to false
Return superseded submissions instead of the current ones.

Response

Documents returned successfully.
datalist of objects
Documents for this page.
has_moreboolean
Whether another page of results is available.
next_cursorstring or null

Cursor to pass as cursor for the next page. Null when there are no more pages.

total_countinteger>=0
Total number of matching documents.

Errors

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