> ## Documentation Index
> Fetch the complete documentation index at: https://docs.mangopay.com/llms.txt
> Use this file to discover all available pages before exploring further.

# All requirements by user type

export const Psc = ({content}) => <Tooltip tip="Another term for beneficial owner: An individual who owns or holds a power of control over a legal entity, either directly or via a holding company, usually by owning more than 25% of the entity's share capital or voting rights.">
    {content}
  </Tooltip>;

export const IconGrayCross = <svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
<path fill-rule="evenodd" clip-rule="evenodd" d="M12 24.0095C18.6274 24.0147 24.0044 18.6464 24.0095 12.019C24.0149 5.39151 18.6465 0.0147133 12.019 0.00946425C5.39161 0.00424574 0.0148962 5.37259 0.00952515 12C0.0043982 18.6274 5.37281 24.0042 12 24.0095ZM9.9065 8.09626C9.40821 7.59726 8.59986 7.59653 8.10108 8.09464C7.60205 8.59275 7.60157 9.40107 8.09961 9.90006L10.2046 12.0083L8.09693 14.1128C7.5979 14.6109 7.59742 15.4192 8.09546 15.9182C8.59375 16.4172 9.4021 16.418 9.90113 15.9199L12.0088 13.8154L14.1138 15.9236C14.6121 16.4227 15.4202 16.4234 15.9192 15.9253C16.418 15.4272 16.4187 14.6189 15.9204 14.1198L13.8154 12.0116L15.9233 9.90717C16.4221 9.40906 16.4229 8.60074 15.9246 8.10172C15.4263 7.60273 14.6179 7.60199 14.1191 8.1001L12.0112 10.2045L9.9065 8.09626Z" fill="#D0D3D0" />
</svg>;

export const IconGreenCheckOutline = <svg width="25" height="25" viewBox="0 0 25 25" fill="none" xmlns="http://www.w3.org/2000/svg">
<circle cx="12.0127" cy="12.0095" r="11" transform="rotate(0.045216 12.0127 12.0095)" stroke="#89E481" stroke-width="2" />
<path fill-rule="evenodd" clip-rule="evenodd" d="M16.8352 8.92754C17.2653 9.38383 17.2648 10.123 16.8341 10.5785L11.6874 16.022C11.2567 16.4775 10.5589 16.4769 10.1289 16.0206L7.19229 12.9049C6.76223 12.4486 6.76276 11.7094 7.19345 11.2539C7.62415 10.7984 8.32192 10.799 8.75197 11.2553L10.9099 13.5448L15.2767 8.92616C15.7074 8.47064 16.4052 8.47125 16.8352 8.92754Z" fill="#89E481" />
</svg>;

export const IconGreenCheck = <svg width="25" height="25" viewBox="0 0 25 25" fill="none" xmlns="http://www.w3.org/2000/svg">
<path fill-rule="evenodd" clip-rule="evenodd" d="M12.0033 24.7159C18.6307 24.7211 24.0075 19.3528 24.0127 12.7254C24.018 6.09797 18.6496 0.721152 12.0222 0.715921C5.3948 0.710691 0.0179769 6.07903 0.0127468 12.7064C0.00751663 19.3339 5.37586 24.7107 12.0033 24.7159ZM16.8341 11.285C17.2648 10.8295 17.2653 10.0903 16.8352 9.63399C16.4052 9.1777 15.7074 9.17709 15.2767 9.63262L10.9099 14.2513L8.75197 11.9617C8.32192 11.5054 7.62415 11.5048 7.19345 11.9603C6.76276 12.4159 6.76223 13.155 7.19229 13.6113L10.1289 16.7271C10.5589 17.1834 11.2567 17.184 11.6874 16.7284L16.8341 11.285Z" fill="#89E481" />
</svg>;

## Introduction

Verification is necessary for Owner users wishing to take actions beyond the limits defined in the <a href="/guides/users/limits">Limits</a> article.

This page outlines the requirements that a user needs to fulfill to be verified. When verified, the <a href="/api-reference/users">User</a> object's `KYCLevel` parameter has the value `REGULAR` instead of `LIGHT` (value by default).

To request verification, a user must already be an Owner, meaning that they have provided the required information depending on their type.

{/* ## Consistency of data and evidence

The information declared in the User object of the API must match the documents and other evidence provided. 

For example, the name on the identity proof must match the declared data in the <a href="/api-reference/users">User</a> object. For a natural user, this means the `FirstName` and `LastName`; for a legal user, `LegalRepresentativeFirstName` and `LegalRepresentativeLastName`.

The same applies to other data regarding the:
- Person or entity being verified
- Declared legal representative (if applicable)
- Beneficial owners (if applicable) */}

## Natural users

Natural users only need to validate their proof of identity.

<Tabs>
  <Tab title="Natural - Hosted IDV">
    <table>
      <tbody>
        <tr class="min-height-2-lines">
          <td class="table-content hug-content">**Identity proof** <br />([accepted](/guides/users/verification/requirements/id-accepted))</td>

          <td class="table-content">
            {IconGreenCheck}
          </td>

          <td class="table-content">**Required** for the individual</td>
          <td class="table-content">Liveness check during the hosted IDV session</td>
        </tr>
      </tbody>
    </table>
  </Tab>

  <Tab title="Natural - Legacy">
    <table>
      <tbody>
        <tr class="min-height-2-lines">
          <td class="table-content hug-content">**Identity proof** <br />([accepted](/guides/users/verification/requirements/id-accepted))</td>

          <td class="table-content">
            {IconGreenCheck}
          </td>

          <td class="table-content">**Required** for the individual</td>
          <td class="table-content">Submitted as a KYC Document via the API</td>
        </tr>
      </tbody>
    </table>
  </Tab>
</Tabs>

For more details about the liveness check performed via hosted IDV, see the guides:

<CardGroup cols={2}>
  <Card title="Hosted IDV" href="/guides/users/verification/hosted">
    Read about Mangopay's web-hosted KYC/KYB solution
  </Card>

  <Card title="Integrating hosted IDV" href="/guides/users/verification/hosted/integration">
    Integrate hosted IDV on your platform
  </Card>

  <Card title="Natural user flow" href="/guides/users/verification/hosted/natural">
    Understand the hosted IDV flow for Natural users
  </Card>
</CardGroup>

<Warning>
  **Caution – Mangopay may request additional evidence**

  Mangopay's KYC verification processes are mandated by AML regulations. Mangopay reserves the right to request any additional information and/or documents that it considers relevant for verification purposes.
</Warning>

## Legal users

Legal entities and sole proprietors, represented by legal users, are subject to more extensive verification requirements.

A legal representative must be declared and verified in the same way as for natural persons.

Legal users must also provide other documents to prove their registration and incorporation (if applicable). Because legal entities are governed and structured differently depending on the jurisdiction, the exact documents accepted for each type are different depending on the country of registration.

Businesses must also provide information about their beneficial owners.

<Warning>
  **Caution – Mangopay may request additional evidence**

  Mangopay's KYC verification processes are mandated by AML regulations. Mangopay reserves the right to request any additional information and/or documents that it considers relevant for verification purposes.

  For legal users, this may include the <a href="/guides/users/verification/documents/types">Shareholder Declaration</a> form, or an ID document for a beneficial owner.
</Warning>

### Coming soon: All legal reps and UBOs verified

In the coming months, Mangopay will be introducing identity verification for all individuals connected with the legal entity:

* For Business – **All legal representatives and beneficial owners (UBOs)**
* For Organization – **All legal representatives**

The required persons will be those listed the public registries of directors and beneficial owners.

Mangopay is fulfilling this requirement through its hosted IDV solution, which is becoming mandatory for all platforms.

Once hosted IDV is integrated, your Legal Business and Organization users will be able to enter email addresses for the relevant individuals, who will then receive a link via email to complete a liveness check – taking photos of themselves and their ID proof using their smartphone.

When all required individuals have successfully completed the liveness check, the entity will be verified (`KYCLevel` will become `REGULAR`).

##### Will all individuals listed in public registries need to be verified?

Not necessarily. In cases where tens of individuals are listed, not all of them will need to be verified. Mangopay is taking a pragmatic risk-based approach to optimize Legal User onboarding in full compliance.

Additionally, the criteria by which Mangopay defines a beneficial owner is not changing – this is typically individuals ultimately owning 25% or more, whether directly or through holding companies (see [full description here](/guides/glossary#beneficial-owner-ubo)). It is possible that the percentage threshold will be tightened for a given Legal User based on Mangopay’s risk assessment.

### Current flows

For more details about the current flows that are ready to integrate, see the hosted IDV guides:

<CardGroup cols={2}>
  <Card title="Hosted IDV" href="/guides/users/verification/hosted">
    Read about Mangopay's web-hosted KYC/KYB solution
  </Card>

  <Card title="Integrating hosted IDV" href="/guides/users/verification/hosted/integration">
    Integrate hosted IDV on your platform
  </Card>

  <Card title="Business flow" href="/guides/users/verification/hosted/business">
    Understand the hosted IDV flow for Businesses
  </Card>

  <Card title="Organization flow" href="/guides/users/verification/hosted/organization">
    Understand the hosted IDV flow for Organizations
  </Card>
</CardGroup>

## Business

<Tabs>
  <Tab title="Business - Hosted IDV">
    <table>
      <tbody>
        <tr class="min-height-2-lines">
          <td class="table-content hug-content">**Registration <br />number**</td>

          <td class="table-content">
            {IconGreenCheck}
          </td>

          <td class="table-content">**Required**</td>
          <td class="table-content">Entered by the user during the hosted IDV session</td>
        </tr>

        <tr class="min-height-3-lines">
          <td class="table-content hug-content">**Registration proof** <br />([accepted](/guides/users/verification/requirements/kyb-local))</td>

          <td class="table-content">
            {IconGreenCheckOutline}
          </td>

          <td class="table-content">**Required**</td>
          <td class="table-content">Uploaded by the user during the hosted IDV session</td>
        </tr>

        <tr class="min-height-3-lines">
          <td class="table-content hug-content">**Articles of <br />association** <br />([accepted](/guides/users/verification/requirements/kyb-local))</td>

          <td class="table-content">
            {IconGreenCheckOutline}
          </td>

          <td class="table-content">**May be required** if the automated check returns no match</td>
          <td class="table-content">If required, uploaded by the user during the hosted IDV session</td>
        </tr>

        <tr class="min-height-3-lines">
          <td class="table-content hug-content">**Identity proof** <br />([accepted](/guides/users/verification/requirements/id-accepted))</td>

          <td class="table-content">
            {IconGreenCheck}
          </td>

          <td class="table-content">*Now: Required for one registered director*</td>
          <td class="table-content">Liveness check during the single hosted IDV session (same link)</td>
        </tr>

        <tr class="min-height-3-lines">
          <td class="table-content hug-content">**Beneficial <br />owners**</td>

          <td class="table-content">
            {IconGreenCheck}
          </td>

          <td class="table-content">*Now: Only details required*</td>
          <td class="table-content">Declared by the user during the hosted IDV session as **Persons of Significant Control (<Psc content="PSCs" />)**</td>
        </tr>

        <tr class="min-height-3-lines">
          <td class="table-content" colspan={2}>*Coming soon <br />[read more](#coming-soon-all-legal-reps-and-ubos-verified)*</td>
          <td class="table-content">***ID verification required for all registered directors and beneficial owners***</td>
          <td class="table-content">*Multiple liveness checks sent by email (addresses submitted by user in main IDV session)*</td>
        </tr>

        <tr class="min-height-3-lines">
          <td class="table-content hug-content">**Shareholder <br />Declaration**</td>

          <td class="table-content">
            {IconGreenCheckOutline}
          </td>

          <td class="table-content">**May be requested** if the other KYB documents don't give sufficient information</td>
          <td class="table-content">If requested, submitted as an additional document via the API</td>
        </tr>
      </tbody>
    </table>
  </Tab>

  <Tab title="Business - Legacy">
    <table>
      <tbody>
        <tr class="min-height-2-lines">
          <td class="table-content hug-content">**Registration <br />number**</td>

          <td class="table-content">
            {IconGreenCheck}
          </td>

          <td class="table-content">**Required**</td>
          <td class="table-content">Submitted in the API's `CompanyNumber`</td>
        </tr>

        <tr class="min-height-3-lines">
          <td class="table-content hug-content">**Registration proof** <br />([accepted](/guides/users/verification/requirements/kyb-local))</td>

          <td class="table-content">
            {IconGreenCheck}
          </td>

          <td class="table-content">**Required**</td>
          <td class="table-content">Submitted as a KYC Document via the API</td>
        </tr>

        <tr class="min-height-3-lines">
          <td class="table-content hug-content">**Articles of <br />association** <br />([accepted](/guides/users/verification/requirements/kyb-local))</td>

          <td class="table-content">
            {IconGreenCheck}
          </td>

          <td class="table-content">**Required**</td>
          <td class="table-content">Submitted as a KYC Document via the API</td>
        </tr>

        <tr class="min-height-3-lines" rowspan={2}>
          <td class="table-content">**Identity proof** <br />([accepted](/guides/users/verification/requirements/id-accepted))</td>

          <td class="table-content">
            {IconGreenCheck}
          </td>

          <td class="table-content">**Required** for the declared `LegalRepresentative`</td>
          <td class="table-content">Submitted as a KYC Document via the API</td>
        </tr>

        <tr class="min-height-3-lines">
          <td class="table-content hug-content">**Beneficial <br />owners**</td>

          <td class="table-content">
            {IconGreenCheck}
          </td>

          <td class="table-content">**Only details required**</td>
          <td class="table-content">Declared as a UBO Declaration via the API</td>
        </tr>

        <tr class="min-height-3-lines" />

        <tr class="min-height-2-lines">
          <td class="table-content hug-content">**Shareholder <br />Declaration**</td>

          <td class="table-content">
            {IconGreenCheckOutline}
          </td>

          <td class="table-content">**May be requested** if the other KYB documents don't give sufficient information</td>
          <td class="table-content">If requested, submitted as an additional document via the API</td>
        </tr>
      </tbody>
    </table>
  </Tab>
</Tabs>

## Organization

<Tabs>
  <Tab title="Organization - Hosted IDV">
    <table>
      <tbody>
        <tr class="min-height-2-lines">
          <td class="table-content hug-content">**Registration <br />number**</td>

          <td class="table-content">
            {IconGreenCheckOutline}
          </td>

          <td class="table-content">Recommended if it exists</td>
          <td class="table-content">Optionally entered by the user during the hosted IDV session</td>
        </tr>

        <tr class="min-height-2-lines">
          <td class="table-content hug-content">**Registration proof** <br />([accepted](/guides/users/verification/requirements/kyb-local))</td>

          <td class="table-content">
            {IconGreenCheck}
          </td>

          <td class="table-content">**Required**</td>
          <td class="table-content">Uploaded by the user during the hosted IDV session</td>
        </tr>

        <tr class="min-height-3-lines">
          <td class="table-content hug-content">**Articles of <br />association** <br />([accepted](/guides/users/verification/requirements/kyb-local))</td>

          <td class="table-content">
            {IconGreenCheck}
          </td>

          <td class="table-content">**Required**</td>
          <td class="table-content">Uploaded by the user during the hosted IDV session</td>
        </tr>

        <tr class="min-height-3-lines">
          <td class="table-content hug-content">**Identity proof** <br />([accepted](/guides/users/verification/requirements/id-accepted))</td>

          <td class="table-content">
            {IconGreenCheck}
          </td>

          <td class="table-content">*Now: Required for one registered director*</td>
          <td class="table-content">Liveness check during the single hosted IDV session (same link)</td>
        </tr>

        <tr class="min-height-4-lines">
          <td class="table-content" colspan={2}>*Coming soon <br />[read more](#coming-soon-all-legal-reps-and-ubos-verified)*</td>
          <td class="table-content">***Required for all registered directors***</td>
          <td class="table-content">*Multiple liveness checks sent by email (addresses submitted by user in main IDV session)*</td>
        </tr>

        <tr class="min-height-2-lines">
          <td class="table-content hug-content">**Beneficial <br />owners**</td>

          <td class="table-content">
            {IconGrayCross}
          </td>

          <td class="table-content" colspan={2}>Not applicable</td>
        </tr>

        <tr class="min-height-3-lines">
          <td class="table-content hug-content">**Shareholder <br />Declaration**</td>

          <td class="table-content">
            {IconGreenCheckOutline}
          </td>

          <td class="table-content">**May be requested** if the other KYB documents don't give sufficient information</td>
          <td class="table-content">If requested, submitted as an additional document via the API</td>
        </tr>
      </tbody>
    </table>
  </Tab>

  <Tab title="Organization - Legacy">
    <table>
      <tbody>
        <tr class="min-height-2-lines">
          <td class="table-content hug-content">**Registration <br />number**</td>

          <td class="table-content">
            {IconGreenCheckOutline}
          </td>

          <td class="table-content">Recommended if it exists</td>
          <td class="table-content">Submitted in the API's `CompanyNumber`</td>
        </tr>

        <tr class="min-height-2-lines">
          <td class="table-content hug-content">**Registration proof** <br />([accepted](/guides/users/verification/requirements/kyb-local))</td>

          <td class="table-content">
            {IconGreenCheck}
          </td>

          <td class="table-content">**Required**</td>
          <td class="table-content">Submitted as a KYC Document via the API</td>
        </tr>

        <tr class="min-height-3-lines">
          <td class="table-content hug-content">**Articles of <br />association** <br />([accepted](/guides/users/verification/requirements/kyb-local))</td>

          <td class="table-content">
            {IconGreenCheck}
          </td>

          <td class="table-content">**Required**</td>
          <td class="table-content">Submitted as a KYC Document via the API</td>
        </tr>

        <tr class="min-height-3-lines" rowspan={2}>
          <td class="table-content">**Identity proof** <br />([accepted](/guides/users/verification/requirements/id-accepted))</td>

          <td class="table-content">
            {IconGreenCheck}
          </td>

          <td class="table-content">**Required** for the declared `LegalRepresentative`</td>
          <td class="table-content">Submitted as a KYC Document via the API</td>
        </tr>

        <tr class="min-height-4-lines" />

        <tr class="min-height-2-lines">
          <td class="table-content hug-content">**Beneficial <br />owners**</td>

          <td class="table-content">
            {IconGrayCross}
          </td>

          <td class="table-content" colspan={2}>Not applicable</td>
        </tr>

        <tr class="min-height-3-lines">
          <td class="table-content hug-content">**Shareholder <br />Declaration**</td>

          <td class="table-content">
            {IconGreenCheckOutline}
          </td>

          <td class="table-content">**May be requested** if the other KYB documents don't give sufficient information</td>
          <td class="table-content">If requested, submitted as an additional document via the API</td>
        </tr>
      </tbody>
    </table>
  </Tab>
</Tabs>

## Soletrader

Soletrader users should declare their personal details in the `LegalRepresentative` fields, and their registered name and address must be in the `Name` and `HeadquartersAddress` parameters.

<Tabs>
  <Tab title="Soletrader - Hosted IDV">
    <table>
      <tbody>
        <tr class="min-height-3-lines">
          <td class="table-content hug-content">**Registration <br />number**</td>

          <td class="table-content">
            {IconGreenCheckOutline}
          </td>

          <td class="table-content">Recommended if it exists</td>
          <td class="table-content">Optionally entered by the user during the hosted IDV session</td>
        </tr>

        <tr class="min-height-2-lines">
          <td class="table-content hug-content">**Registration proof** <br />([accepted](/guides/users/verification/requirements/kyb-local))</td>

          <td class="table-content">
            {IconGreenCheck}
          </td>

          <td class="table-content">**Required**</td>
          <td class="table-content">Uploaded by the user during the hosted IDV session</td>
        </tr>

        <tr class="min-height-2-lines">
          <td class="table-content hug-content">**Articles of association**</td>

          <td class="table-content">
            {IconGrayCross}
          </td>

          <td class="table-content" colspan={2}>Not applicable</td>
        </tr>

        <tr class="min-height-2-lines">
          <td class="table-content hug-content">**Identity proof** <br />([accepted](/guides/users/verification/requirements/id-accepted))</td>

          <td class="table-content">
            {IconGreenCheck}
          </td>

          <td class="table-content">**Required** for the sole proprietor (`LegalRepresentative`)</td>
          <td class="table-content">Liveness check during the hosted IDV session</td>
        </tr>

        <tr class="min-height-2-lines">
          <td class="table-content hug-content">**Beneficial <br />owners**</td>

          <td class="table-content">
            {IconGrayCross}
          </td>

          <td class="table-content" colspan={2}>Not applicable</td>
        </tr>

        <tr class="min-height-3-lines">
          <td class="table-content hug-content">**Shareholder <br />Declaration**</td>

          <td class="table-content">
            {IconGreenCheckOutline}
          </td>

          <td class="table-content">**May be requested** if the other KYB documents don't give sufficient information</td>
          <td class="table-content">If requested, submitted as an additional document via the API</td>
        </tr>
      </tbody>
    </table>
  </Tab>

  <Tab title="Soletrader - Legacy">
    <table>
      <tbody>
        <tr class="min-height-3-lines">
          <td class="table-content hug-content">**Registration <br />number**</td>

          <td class="table-content">
            {IconGreenCheckOutline}
          </td>

          <td class="table-content">Recommended if it exists</td>
          <td class="table-content">Submitted in the API's `CompanyNumber`</td>
        </tr>

        <tr class="min-height-2-lines">
          <td class="table-content hug-content">**Registration proof** <br />([accepted](/guides/users/verification/requirements/kyb-local))</td>

          <td class="table-content">
            {IconGreenCheck}
          </td>

          <td class="table-content">**Required**</td>
          <td class="table-content">Submitted as a KYC Document via the API</td>
        </tr>

        <tr class="min-height-2-lines">
          <td class="table-content hug-content">**Articles of association**</td>

          <td class="table-content">
            {IconGrayCross}
          </td>

          <td class="table-content">Not applicable</td>
        </tr>

        <tr class="min-height-2-lines">
          <td class="table-content hug-content">**Identity proof** <br />([accepted](/guides/users/verification/requirements/id-accepted))</td>

          <td class="table-content">
            {IconGreenCheck}
          </td>

          <td class="table-content">**Required** for the sole proprietor (`LegalRepresentative`)</td>
          <td class="table-content">Submitted as a KYC Document via the API</td>
        </tr>

        <tr class="min-height-2-lines">
          <td class="table-content hug-content">**Beneficial <br />owners**</td>

          <td class="table-content">
            {IconGrayCross}
          </td>

          <td class="table-content" colspan={2}>Not applicable</td>
        </tr>

        <tr class="min-height-3-lines">
          <td class="table-content hug-content">**Shareholder <br />Declaration**</td>

          <td class="table-content">
            {IconGreenCheckOutline}
          </td>

          <td class="table-content">**May be requested** if the other KYB documents don't give sufficient information</td>
          <td class="table-content">If requested, submitted as an additional document via the API</td>
        </tr>
      </tbody>
    </table>
  </Tab>
</Tabs>

## Partnership

The Partnership type only applies to the Gesellschaft bürgerlichen Rechts (GbR) in Germany. See <a href="/guides/users/verification/requirements/kyb-local#de-partnership">DE - Partnership</a> for more details.

The Partnership type should not be used for any other entity, even if it's name includes the notion of a "partnership".

If you are onboarding the German GbR entity, contact Mangopay for guidance.

<Tabs>
  <Tab title="Partnership - Hosted IDV">
    <table>
      <tbody>
        <tr class="min-height-2-lines">
          <td class="table-content hug-content">**Registration <br />number**</td>

          <td class="table-content">
            {IconGrayCross}
          </td>

          <td class="table-content" colspan={2}>Not applicable</td>
        </tr>

        <tr class="min-height-2-lines">
          <td class="table-content hug-content">**Registration proof** <br />([accepted](/guides/users/verification/requirements/kyb-local))</td>

          <td class="table-content">
            {IconGreenCheck}
          </td>

          <td class="table-content">**Required**</td>
          <td class="table-content">Contact Mangopay for GbR integration details</td>
        </tr>

        <tr class="min-height-2-lines">
          <td class="table-content hug-content">**Articles of <br />association** <br />([accepted](/guides/users/verification/requirements/kyb-local))</td>

          <td class="table-content">
            {IconGreenCheck}
          </td>

          <td class="table-content">**Required** if it exists for the entity</td>
          <td class="table-content">Contact Mangopay for GbR integration details</td>
        </tr>

        <tr class="min-height-2-lines">
          <td class="table-content hug-content">**Identity proof** <br />([accepted](/guides/users/verification/requirements/id-accepted))</td>

          <td class="table-content">
            {IconGreenCheck}
          </td>

          <td class="table-content">**Required** for the declared `LegalRepresentative`</td>
          <td class="table-content">Contact Mangopay for GbR integration details</td>
        </tr>

        <tr class="min-height-2-lines">
          <td class="table-content hug-content">**Beneficial <br />owners**</td>

          <td class="table-content">
            {IconGreenCheck}
          </td>

          <td class="table-content">**Required**</td>
          <td class="table-content">Contact Mangopay for GbR integration details</td>
        </tr>

        <tr class="min-height-2-lines">
          <td class="table-content hug-content">**Shareholder <br />Declaration**</td>

          <td class="table-content">
            {IconGreenCheckOutline}
          </td>

          <td class="table-content">**May be requested** if the other KYB documents don't give sufficient information</td>
          <td class="table-content">If requested, submitted as an additional document via the API</td>
        </tr>
      </tbody>
    </table>
  </Tab>

  <Tab title="Partnership - Legacy">
    <table>
      <tbody>
        <tr class="min-height-2-lines">
          <td class="table-content hug-content">**Registration <br />number**</td>

          <td class="table-content">
            {IconGrayCross}
          </td>

          <td class="table-content" colspan={2}>Not applicable</td>
        </tr>

        <tr class="min-height-2-lines">
          <td class="table-content hug-content">**Registration proof** <br />([accepted](/guides/users/verification/requirements/kyb-local))</td>

          <td class="table-content">
            {IconGreenCheck}
          </td>

          <td class="table-content">**Required**</td>
          <td class="table-content">Submitted as a KYC Document via the API</td>
        </tr>

        <tr class="min-height-2-lines">
          <td class="table-content hug-content">**Articles of <br />association** <br />([accepted](/guides/users/verification/requirements/kyb-local))</td>

          <td class="table-content">
            {IconGreenCheck}
          </td>

          <td class="table-content">**Required** if it exists for the entity</td>
          <td class="table-content">Submitted as a KYC Document via the API</td>
        </tr>

        <tr class="min-height-2-lines">
          <td class="table-content hug-content">**Identity proof** <br />([accepted](/guides/users/verification/requirements/id-accepted))</td>

          <td class="table-content">
            {IconGreenCheck}
          </td>

          <td class="table-content">**Required** for the declared `LegalRepresentative`</td>
          <td class="table-content">Submitted as a KYC Document via the API</td>
        </tr>

        <tr class="min-height-2-lines">
          <td class="table-content hug-content">**Beneficial <br />owners**</td>

          <td class="table-content">
            {IconGreenCheck}
          </td>

          <td class="table-content">**Only details required**</td>
          <td class="table-content">Declared as a UBO Declaration via the API</td>
        </tr>

        <tr class="min-height-2-lines">
          <td class="table-content hug-content">**Shareholder <br />Declaration**</td>

          <td class="table-content">
            {IconGreenCheckOutline}
          </td>

          <td class="table-content">**May be requested** if the other KYB documents don't give sufficient information</td>
          <td class="table-content">If requested, submitted as an additional document via the API</td>
        </tr>
      </tbody>
    </table>
  </Tab>
</Tabs>
