cURL
curl --request GET \ --url https://api.rolla.xyz/api/v1/external/kyb/related-persons \ --header 'X-API-Key: <api-key>'
{ "success": true, "message": "Related persons retrieved successfully", "data": { "relatedPersons": [ { "id": "<string>", "firstName": "John", "lastName": "Doe", "roles": [ "Beneficial Owner" ], "email": "jsmith@example.com", "phone": "<string>", "dateOfBirth": "1990-01-15", "ownershipPercentage": 50, "currentAddress": { "street": "123 Main Street", "city": "Lagos", "state": "Lagos", "postalCode": "100001", "country": "NG" }, "sourceOfWealthExplanation": "<string>", "bvn": "<string>", "nin": "<string>" } ] } }
Retrieves the list of related persons (directors, beneficial owners) for the KYB application.
curl -X GET "https://api.rolla.xyz/api/v1/external/kyb/related-persons" \ -H "X-API-Key: your_api_key_here"
{ "success": true, "message": "Related persons retrieved successfully", "data": { "relatedPersons": [ { "id": "rp-001", "firstName": "John", "lastName": "Doe", "roles": ["Director", "Beneficial Owner"], "email": "john@acmecorp.com", "phone": "+2341234567890", "dateOfBirth": "1990-01-15", "ownershipPercentage": 60, "currentAddress": { "street": "456 Oak Avenue", "city": "Lagos", "state": "Lagos", "postalCode": "100001", "country": "NG" } } ] } }
Your Rolla API key
Related persons retrieved successfully
true
"Related persons retrieved successfully"
Show child attributes