Get the submitted KYB entity data for a corporate
GET
/corporates/{corporateId}/kyb/entity Returns the company details and ownership graph submitted to pre-populate the KYB of the corporate
identified by the corporateId path parameter, so you can check what was recorded.
Alongside what you submitted, the response carries the corporate's own companyName,
registrationNumber, and registrationCountry, taken from the corporate record.
See Submit known KYB entity data for a corporate for how the graph is put together.
Request
Available on
SandboxProductionMock server
Path parameters
Responses
200OK
Success
Headers
Body
application/json
CorporateKybEntityResponseSchemaCorporateKybEntityResponseSchema · object · 7 fields
Response example
{ "company": { "registrationDate": "string", "legalForm": "string", "classifications": [ { "type": "NACE", "code": "string", "description": "string" } ], "taxIdentifiers": [ { "identifier": "string", "country": "string" } ], "addresses": [ { "streetAddress": "string", "streetAddress2": "string", "postalCode": "string", "city": "string", "state": "string", "region": "string", "country": "string" } ], "websiteUrl": "string" }, "companies": [ { "ref": "string", "details": { "name": "string", "registrationNumber": "string", "country": "string", "registrationDate": "string", "legalForm": "string", "taxIdentifiers": [ { "identifier": "string", "country": "string" } ], "addresses": [ { "streetAddress": "string", "streetAddress2": "string", "postalCode": "string", "city": "string", "state": "string", "region": "string", "country": "string" } ] } } ], "individuals": [ { "ref": "string", "details": { "firstName": "string", "lastName": "string", "middleName": "string", "maidenName": "string", "birthDate": "string", "birthCountry": "string", "birthPlace": "string", "gender": "MALE", "nationalities": [ "string" ], "email": "string", "phoneNumber": "string", "taxIdentifiers": [ { "identifier": "string", "country": "string" } ], "addresses": [ { "streetAddress": "string", "streetAddress2": "string", "postalCode": "string", "city": "string", "state": "string", "region": "string", "country": "string" } ] }, "isBeneficialOwner": true, "isControllingPerson": true, "isBusinessContact": true, "isSignatory": true, "isDelegator": true } ], "relations": [ { "fromRef": "string", "toRef": "string", "roles": [ "SHAREHOLDER" ], "ownershipPercentage": 0, "votingRightsPercentage": 0, "position": "string" } ], "companyName": "string", "registrationNumber": "string", "registrationCountry": "string"}