Read more about the UBO object →
Path parameters
The unique identifier of the user.
The unique identifier of the UBO Declaration.
The unique identifier of the UBO.
Responses
Max length: 128 characters (see data formats for details) The unique identifier of the object. The date and time at which the object was created.
Max. length: 100 characters The last name of the beneficial owner.
Max. length: 100 characters The first name of the beneficial owner.
The date of birth of the beneficial owner. Note: This is a Unix timestamp in UTC. Ensure you convert your timezone to UTC to avoid midnight being interpreted as the day before.
The nationality of the beneficial owner.
The postal address of the beneficial owner. Max. length: 255 characters The first line of the address.
Max. length: 255 characters The second line of the address.
Max. length: 255 characters The city of the address.
Max. length: 255 characters The region of the address. This field is optional except if the Country
is US, CA, or MX.
Max. length: 255 characters The postal code of the address. The postal code can contain the following characters: alphanumeric, dashes, and spaces.
Information about the beneficial owner’s place of birth. The city in which the beneficial owner was born.
Whether or not the UBO is considered in the declaration. To disregard a UBO, this parameter must be set to false
. This action is irreversible.
{
"Id" : "ubo_m_01JH7TS5ZHW3R501ACJEKD5G39" ,
"CreationDate" : 1736503498 ,
"LastName" : "Wiza" ,
"FirstName" : "Jess" ,
"Birthday" : 652117514 ,
"Nationality" : "FR" ,
"Address" : {
"AddressLine1" : "669 Ratke Forge" ,
"AddressLine2" : "Schamberger Walk" ,
"City" : "Paris" ,
"Region" : "Île-de-France" ,
"PostalCode" : "75001" ,
"Country" : "FR"
},
"Birthplace" : {
"City" : "Paris" ,
"Country" : "FR"
},
"IsActive" : true
}
PHP
NodeJS
Ruby
Java
Python
.NET
<? php
require_once 'vendor/autoload.php' ;
use MangoPay\ MangoPayApi ;
use MangoPay\Libraries\ ResponseException as MGPResponseException ;
use MangoPay\Libraries\ Exception as MGPException ;
$api = new MangoPayApi ();
$api -> Config -> ClientId = 'your-client-id' ;
$api -> Config -> ClientPassword = 'your-api-key' ;
$api -> Config -> TemporaryFolder = 'tmp/' ;
try {
$userId = '198557165' ;
$uboDeclarationId = '198692872' ;
$uboId = '198693429' ;
$response = $api -> UboDeclarations -> GetUbo ( $userId , $uboDeclarationId , $uboId );
print_r ( $response );
} catch ( MGPResponseException $e ) {
print_r ( $e );
} catch ( MGPException $e ) {
print_r ( $e );
}