Submit Legal Entity Registration Documents

Submits one or more documents for a legal entity, each answering a document requirement. Upload the file contents to the File Service first, then reference each file by its `file_id` and `one_time_secret`. A requirement that needs approval enters review as `AWAITING_REVIEW`; other submissions are accepted as `COMPLETED`. Read `requirement.is_approval_required`, then poll the get-document endpoint. A new submission supersedes a rejected attempt for the same requirement. **Token scopes**: `legal-entity:write`

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.deel.training/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.

Request

This endpoint expects an object.
dataobjectRequired

Response

Documents submitted successfully.
datalist of objects
The created submissions, in request order.

Errors

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