How to submit a UBO Declaration
Introduction
This how-to guide will show you how to successfully submit a UBO Declaration for validation by Mangopay.
Prerequisites
- A
ClientIdand an API key – if you don’t have these, contact Sales to get access to the Mangopay Dashboard - A legal Owner user whose
LegalPersonTypeisBUSINESSorPARTNERSHIPand for whom you have submitted all the necessary KYC Documents (see How to submit a KYC Document).
The UBO Declaration object allows you to submit information concerning the beneficial owners of a legal user. Find out more about the process in the Beneficial owners article.
Best practice - Submit KYC Documents before UBO Declaration
Because the information in the UBO Declaration is compared with the verification documents, it is necessary to submit all the required documents first before submitting the UBO Declaration.
Test data
You can simulate the acceptance or refusal of a UBO Declaration in Sandbox. To do so, when you create the first UBO (Step 2 below), set the FirstName to the relevant (case-sensitive) value to produce the desired outcome after submission (Step 4):
1. Create the UBO Declaration
Create the UBO Declaration with the UserId.
The response shows the Status “CREATED” and contains an Id, which is the unique identifier of the UBO Declaration object. You need to save this for the next step.
2. Create the first UBO
With the Id of the UBO Declaration as the UboDeclarationId path parameter, create the first UBO, entering the required information. In Sandbox, set the FirstName to the desired test outcome, for example, AcceptUBO.
POST /v2.01/{ClientId}/users/{UserId}/kyc/ubodeclarations/{UboDeclarationId}/ubos
3. Create additional UBOs as needed
Repeat Step 2 as many times as necessary. Your UBO Declaration can contain a minimum of 1 and a maximum of 15 UBOs.
4. Submit the UBO Declaration
Once all UBOs are created and correctly declared, submit the declaration for review by Mangopay’s teams by changing the Status from CREATED to VALIDATION_ASKED.
PUT /v2.01/{ClientId}/users/{UserId}/kyc/ubodeclarations/{UboDeclarationId}
5. Set up relevant hooks (recommended)
There are dedicated hooks to provide notifications of the outcome of the review by Mangopay:
UBO_DECLARATION_VALIDATED, notifying that the UBO Declaration status has changed toVALIDATED.UBO_DECLARATION_REFUSED, notifying that the UBO Declaration status has changed toREFUSED.UBO_DECLARATION_INCOMPLETE, notifying that the UBO Declaration status has changed toINCOMPLETE.
Note - Only INCOMPLETE declarations can be reused
UBO Declarations can be resubmitted or not depending on their status:
REFUSED- The object can’t be re-submitted. You need to create a new declaration.INCOMPLETE- The object can be modified and re-submitted.
For more information about why the declaration wasn’t validated, see theReasonandMessageparameters returned by the View a UBO Declaration endpoint.
7. If incomplete, take any remedial action
If the response from Mangopay is that the UBO Declaration is INCOMPLETE, check the View a UBO Declaration endpoint for information on why.
Take the necessary steps indicated by Mangopay in the Reason and Message parameters.
If further documents required
It may be that additional documentary evidence is required, such as the Shareholder Declaration form or another verification document. Any additional documents should be submitted in a KYC Document object.
How to submit a KYC Document →
If UBO added in error
It may be that the declaration contains information about someone who is not in fact a beneficial owner. If this happens, change the IsActive parameter of the UBO object to false to have them disregarded from the declaration. This action is irreversible, but another UBO can be added in their place.
PUT /v2.01/{ClientId}/users/{UserId}/kyc/ubodeclarations/{UboDeclarationId}/ubos/{UboId}
8. Once remediated, re-submit the UBO Declaration
Once the reason that the declaration was marked INCOMPLETE has been addressed, re-submit the UBO Declaration by changing the Status to VALIDATED_ASKED (as in Step 4).
Caution - UBO Declaration must be consistent with documents
If additional documentary evidence was supplied to support the declaration, you must still ensure that the information in the UBO Declaration object is consistent with the documents before re-submitting.