Skip to main content
GET
/
kyb
/
related-persons
Get Related Persons
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>"
      }
    ]
  }
}
Retrieve the list of related persons (directors and beneficial owners) associated with your KYB application.

Example Request

curl -X GET "https://api.rolla.xyz/api/v1/external/kyb/related-persons" \
  -H "X-API-Key: your_api_key_here"

Example Response

{
  "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"
        }
      }
    ]
  }
}
Related persons include anyone with a Beneficial Owner or Director role. All persons with 25% or more ownership must be declared as beneficial owners.

Authorizations

X-API-Key
string
header
required

Your Rolla API key

Response

Related persons retrieved successfully

success
boolean
Example:

true

message
string
Example:

"Related persons retrieved successfully"

data
object