Skip to main content

Upload Legal Representative Documents

POST 

/v1/users/legal-representatives/:id/documents

Upload the legal representative document files (max size: 25 MB).

Important: document submission is managed per legal representative.

Required documents (must be uploaded for this representative to finalize onboarding):

  • selfie - Representative selfie photo
  • identity_document - ID, CNH or Passport (requires identity_document_type)
  • qualification_declaration - Declaration of powers/qualification

Optional documents:

  • income_declaration - Income declaration
  • address_proof - Proof of address

Related endpoint: POST /users/onboardings/legal-person/{id}/documents.

Request

Path Parameters

    id stringrequired

    Legal representative ID.

Header Parameters

    nonce stringrequired

    The nonce ID is a UUID (v4) used to uniquely identify the request. All requests must have an identifier.

    x-lang string

    Possible values: [pt-BR, en-US]

    Indicates the preferred language. Defaults to Brazilian Portuguese if unspecified.

    x-product-uuid string

    The product ID is a UUID (v4) used to identify the Z.ro product configuration.

    x-product-target-user-uuid string

    The product target user ID is a UUID (v4) used to identify what user account this request must be executed. Require: x-product-uuid.

Body

required
    identity_document_type stringrequired

    Possible values: [id, cnh, passport]

    Identity document type (id, cnh, passport).

    selfie binaryrequired

    User selfie. Always required.

    identity_document binaryrequired

    Identity document (ID, CNH, Passport). Always required.

    qualification_declaration binaryrequired

    Qualification declaration document. Always required.

    income_declaration binary

    Income declaration document. Optional.

    address_proof binary

    Proof of address document. Optional.

Responses

The file upload returned successfully.

Schema
  • Array [
  • id stringrequired

    Legal representative document ID.

    file_id objectrequired

    Uploaded file ID.

    file_name objectrequired

    Uploaded file name.

    created_at objectrequired

    Upload creation date.

    identity_document_type string

    Possible values: [id, cnh, passport]

    Identity document type (id, cnh, passport). Present for identity documents.

    type stringrequired

    Possible values: [selfie, identity_document, identity_document_front, identity_document_back, qualification_declaration, income_declaration, address_proof]

    Stored legal representative document type.

  • ]
Loading...