curl --request POST \
--url https://api.lightspark.com/grid/2025-10-13/beneficial-owners \
--header 'Authorization: Basic <encoded-value>' \
--header 'Content-Type: application/json' \
--data '
{
"customerId": "Customer:019542f5-b3e7-1d02-0000-000000000001",
"roles": [
"UBO",
"DIRECTOR"
],
"personalInfo": {
"firstName": "Jane",
"lastName": "Smith",
"birthDate": "1978-06-15",
"nationality": "US",
"address": {
"line1": "123 Main Street",
"postalCode": "94105",
"country": "US",
"line2": "Apt 4B",
"city": "San Francisco",
"state": "CA"
},
"personalIds": {
"idType": "SSN",
"identifier": "123-45-6789",
"countryOfIssuance": "US"
},
"middleName": "Marie",
"email": "jane.smith@acmecorp.com",
"phoneNumber": "+14155550192"
},
"ownershipPercentage": 51
}
'{
"id": "BeneficialOwner:019542f5-b3e7-1d02-0000-000000000001",
"customerId": "Customer:019542f5-b3e7-1d02-0000-000000000001",
"roles": [
"UBO",
"DIRECTOR"
],
"personalInfo": {
"firstName": "Jane",
"lastName": "Smith",
"birthDate": "1978-06-15",
"nationality": "US",
"address": {
"line1": "123 Main Street",
"postalCode": "94105",
"country": "US",
"line2": "Apt 4B",
"city": "San Francisco",
"state": "CA"
},
"personalIds": {
"idType": "SSN",
"identifier": "123-45-6789",
"countryOfIssuance": "US"
},
"middleName": "Marie",
"email": "jane.smith@acmecorp.com",
"phoneNumber": "+14155550192"
},
"kycStatus": "APPROVED",
"createdAt": "2025-10-03T12:00:00Z",
"ownershipPercentage": 51,
"updatedAt": "2025-10-03T12:00:00Z"
}Add a beneficial owner, director, or company officer to a business customer. The beneficial owner will go through KYC verification automatically.
curl --request POST \
--url https://api.lightspark.com/grid/2025-10-13/beneficial-owners \
--header 'Authorization: Basic <encoded-value>' \
--header 'Content-Type: application/json' \
--data '
{
"customerId": "Customer:019542f5-b3e7-1d02-0000-000000000001",
"roles": [
"UBO",
"DIRECTOR"
],
"personalInfo": {
"firstName": "Jane",
"lastName": "Smith",
"birthDate": "1978-06-15",
"nationality": "US",
"address": {
"line1": "123 Main Street",
"postalCode": "94105",
"country": "US",
"line2": "Apt 4B",
"city": "San Francisco",
"state": "CA"
},
"personalIds": {
"idType": "SSN",
"identifier": "123-45-6789",
"countryOfIssuance": "US"
},
"middleName": "Marie",
"email": "jane.smith@acmecorp.com",
"phoneNumber": "+14155550192"
},
"ownershipPercentage": 51
}
'{
"id": "BeneficialOwner:019542f5-b3e7-1d02-0000-000000000001",
"customerId": "Customer:019542f5-b3e7-1d02-0000-000000000001",
"roles": [
"UBO",
"DIRECTOR"
],
"personalInfo": {
"firstName": "Jane",
"lastName": "Smith",
"birthDate": "1978-06-15",
"nationality": "US",
"address": {
"line1": "123 Main Street",
"postalCode": "94105",
"country": "US",
"line2": "Apt 4B",
"city": "San Francisco",
"state": "CA"
},
"personalIds": {
"idType": "SSN",
"identifier": "123-45-6789",
"countryOfIssuance": "US"
},
"middleName": "Marie",
"email": "jane.smith@acmecorp.com",
"phoneNumber": "+14155550192"
},
"kycStatus": "APPROVED",
"createdAt": "2025-10-03T12:00:00Z",
"ownershipPercentage": 51,
"updatedAt": "2025-10-03T12:00:00Z"
}API token authentication using format <api token id>:<api client secret>
The ID of the business customer this beneficial owner is associated with
"Customer:019542f5-b3e7-1d02-0000-000000000001"
Roles of this person within the business
Role of the beneficial owner within the business
UBO, DIRECTOR, COMPANY_OFFICER, CONTROL_PERSON, TRUSTEE, GENERAL_PARTNER ["UBO", "DIRECTOR"]Show child attributes
Percentage of ownership in the business (0-100). Relevant when role includes UBO.
0 <= x <= 10051
Beneficial owner created successfully
Unique identifier for this beneficial owner
"BeneficialOwner:019542f5-b3e7-1d02-0000-000000000001"
The ID of the business customer this beneficial owner is associated with
"Customer:019542f5-b3e7-1d02-0000-000000000001"
Roles of this person within the business
Role of the beneficial owner within the business
UBO, DIRECTOR, COMPANY_OFFICER, CONTROL_PERSON, TRUSTEE, GENERAL_PARTNER ["UBO", "DIRECTOR"]Show child attributes
The current KYC status of a customer
UNVERIFIED, PENDING, APPROVED, REJECTED "APPROVED"
When this beneficial owner was created
"2025-10-03T12:00:00Z"
Percentage of ownership in the business (0-100)
0 <= x <= 10051
When this beneficial owner was last updated
"2025-10-03T12:00:00Z"
Was this page helpful?