Close
logointerlace
Talk with us >

Account Beneficiaries

Account Beneficiaries can be managed through our Account Beneficiaries APIs, which provides flexibility on the account, as it does not require beneficiaries be set up on Account creation.

!
NOTE: In the Beneficiary List the share percentage is not required to sum to 100%, but the API service does ensure that the share percentage does not exceed 100%.
Account beneficiaries - APIs
  1. Search beneficiaries
  2. Add beneficiary
  3. Beneficiary details
  4. Update beneficiary
  5. Delete beneficiary

Add beneficiary

POST /accounts/1041000017/beneficiaries

Request Body

{
"name": {
"first": "John",
"middle": "J.",
"last": "Smith"
},
"taxId": "*****7632",
"taxIdType": "ITIN",
"dateOfBirth": "1975-09-18",
"addresses": [
{
"line1": "1 Main St",
"line2": "Main",
"line3": "St",
"city": "Melrose",
"state": "NY",
"postalCode": "12121",
"country": "US",
"type": "HOME"
}
],
"emails": [
{
"type": "HOME",
"email": "JSmith@gmail.com"
}
],
"phones": [
{
"type": "HOME",
"country": "US",
"number": "(555) 555-1234"
}
],
"beneficiaryType": "PRIMARY",
"relationship": "FAMILY_RELATIVE",
"sharePercentage": 100
}

Response

{
"beneficiaryId": "32e84b3a-80f7-4619-af74-cbbf6decb388",
"name": {
"first": "John",
"middle": "J.",
"last": "Smith"
},
"taxId": "*****7632",
"taxIdType": "ITIN",
"dateOfBirth": "1975-09-18",
"addresses": [
{
"line1": "1 Main St",
"line2": "Main",
"line3": "St",
"city": "Melrose",
"state": "NY",
"postalCode": "12121",
"country": "US",
"type": "HOME"
}
],
"emails": [
{
"type": "HOME",
"email": "JSmith@gmail.com"
}
],
"phones": [
{
"type": "HOME",
"country": "US",
"number": "(555) 555-1234"
}
],
"beneficiaryType": "PRIMARY",
"relationship": "FAMILY_RELATIVE",
"sharePercentage": 100
}

Beneficiary details

GET /accounts/1041000017/beneficiaries/32e84b3a-80f7-4619-af74-cbbf6decb388

{
"beneficiaryId": "32e84b3a-80f7-4619-af74-cbbf6decb388",
"name": {
"first": "John",
"middle": "J.",
"last": "Smith"
},
"taxId": "*****7632",
"taxIdType": "ITIN",
"dateOfBirth": "1975-09-18",
"addresses": [
{
"line1": "1 Main St",
"line2": "Main",
"line3": "St",
"city": "Melrose",
"state": "NY",
"postalCode": "12121",
"country": "US",
"type": "HOME"
}
],
"emails": [
{
"type": "HOME",
"email": "JSmith@gmail.com"
}
],
"phones": [
{
"type": "HOME",
"country": "US",
"number": "(555) 555-1234"
}
],
"beneficiaryType": "PRIMARY",
"relationship": "FAMILY_RELATIVE",
"sharePercentage": 100
}

Update beneficiary

PATCH /accounts/1041000017/beneficiaries/32e84b3a-80f7-4619-af74-cbbf6decb388

Request Body

{
"name": {
"first": "John",
"middle": "J.",
"last": "Smith"
},
"taxId": "*****7632",
"taxIdType": "ITIN",
"dateOfBirth": "1975-09-18",
"addresses": [
{
"line1": "1 Main St",
"line2": "Main",
"line3": "St",
"city": "Melrose",
"state": "NY",
"postalCode": "12121",
"country": "US",
"type": "HOME"
}
],
"emails": [
{
"type": "HOME",
"email": "JSmith@gmail.com"
}
],
"phones": [
{
"type": "HOME",
"country": "US",
"number": "(555) 555-1234"
}
],
"beneficiaryType": "PRIMARY",
"relationship": "FAMILY_RELATIVE",
"sharePercentage": 50
}

Response

{
"beneficiaryId": "32e84b3a-80f7-4619-af74-cbbf6decb388",
"name": {
"first": "John",
"middle": "J.",
"last": "Smith"
},
"taxId": "*****7632",
"taxIdType": "ITIN",
"dateOfBirth": "1975-09-18",
"addresses": [
{
"line1": "1 Main St",
"line2": "Main",
"line3": "St",
"city": "Melrose",
"state": "NY",
"postalCode": "12121",
"country": "US",
"type": "HOME"
}
],
"emails": [
{
"type": "HOME",
"email": "JSmith@gmail.com"
}
],
"phones": [
{
"type": "HOME",
"country": "US",
"number": "(555) 555-1234"
}
],
"beneficiaryType": "PRIMARY",
"relationship": "FAMILY_RELATIVE",
"sharePercentage": 100
}

Delete beneficiary

DELETE /accounts/1041000017/beneficiaries/32e84b3a-80f7-4619-af74-cbbf6decb388

Response

{
"beneficiaryId": "32e84b3a-80f7-4619-af74-cbbf6decb388",
"name": {
"first": "John",
"middle": "J.",
"last": "Smith"
},
"taxId": "*****7632",
"taxIdType": "ITIN",
"dateOfBirth": "1975-09-18",
"addresses": [
{
"line1": "1 Main St",
"line2": "Main",
"line3": "St",
"city": "Melrose",
"state": "NY",
"postalCode": "12121",
"country": "US",
"type": "HOME"
}
],
"emails": [
{
"type": "HOME",
"email": "JSmith@gmail.com"
}
],
"phones": [
{
"type": "HOME",
"country": "US",
"number": "(555) 555-1234"
}
],
"beneficiaryType": "PRIMARY",
"relationship": "FAMILY_RELATIVE",
"sharePercentage": 100
}



Related Links:
Previous
Account Owners