Beneficial owners are the individuals who control or own 25% or more of a corporation entity. Beneficial owners are always people, and never organizations. Generally, you will need to submit between 1 and 5 beneficial owners for every corporation entity. You should update and archive beneficial owners for a corporation entity as their details change.
{
"company_title": "CEO",
"created_at": "2020-01-31T23:59:59Z",
"entity_id": "entity_n8y8tnk2p9339ti393yi",
"id": "entity_beneficial_owner_vozma8szzu1sxezp5zq6",
"idempotency_key": null,
"individual": {
"address": {
"city": "New York",
"country": "US",
"line1": "33 Liberty Street",
"line2": null,
"state": "NY",
"zip": "10045"
},
"date_of_birth": "1970-01-31",
"identification": {
"method": "social_security_number",
"number_last4": "1120"
},
"name": "Ian Crease"
},
"prongs": [
"control",
"ownership"
],
"type": "entity_beneficial_owner"
}This person’s role or title within the entity.
The ISO 8601 time at which the Beneficial Owner was created.
The identifier of the Entity to which this beneficial owner belongs.
The identifier of this beneficial owner.
The idempotency key you chose for this object. This value is unique across Increase and is used to ensure that a request is only processed once. Learn more about idempotency.
Personal details for the beneficial owner.
Why this person is considered a beneficial owner of the entity.
A constant representing the object’s type. For this resource it will always be entity_beneficial_owner.
curl \
--url "${INCREASE_URL}/entity_beneficial_owners?entity_id=entity_n8y8tnk2p9339ti393yi" \
-H "Authorization: Bearer ${INCREASE_API_KEY}"import Increase from 'increase';
const client = new Increase({
apiKey: process.env['INCREASE_API_KEY'], // This is the default and can be omitted
});
// Automatically fetches more pages as needed.
for await (const entityBeneficialOwner of client.beneficialOwners.list({
entity_id: 'entity_id',
})) {
console.log(entityBeneficialOwner.id);
}import os
from increase import Increase
client = Increase(
api_key=os.environ.get("INCREASE_API_KEY"), # This is the default and can be omitted
)
page = client.beneficial_owners.list(
entity_id="entity_id",
)
page = page.data[0]
print(page.id)require "increase"
increase = Increase::Client.new(
api_key: ENV["INCREASE_API_KEY"] # This is the default and can be omitted
)
page = increase.beneficial_owners.list(entity_id: "entity_id")
puts(page)package main
import (
"context"
"fmt"
"os"
"github.com/Increase/increase-go"
"github.com/Increase/increase-go/option"
)
func main() {
client := increase.NewClient(
option.WithAPIKey(os.Getenv("INCREASE_API_KEY")), // This is the default and can be omitted
)
page, err := client.BeneficialOwners.List(context.TODO(), increase.BeneficialOwnerListParams{
EntityID: increase.F("entity_id"),
})
if err != nil {
panic(err.Error())
}
fmt.Printf("%+v\n", page)
}
package com.increase.api.example;
import com.increase.api.client.IncreaseClient;
import com.increase.api.client.okhttp.IncreaseOkHttpClient;
import com.increase.api.models.beneficialowners.BeneficialOwnerListPage;
import com.increase.api.models.beneficialowners.BeneficialOwnerListParams;
public final class Main {
private Main() {}
public static void main(String[] args) {
IncreaseClient client = IncreaseOkHttpClient.fromEnv();
BeneficialOwnerListParams params = BeneficialOwnerListParams.builder()
.entityId("entity_id")
.build();
BeneficialOwnerListPage page = client.beneficialOwners().list(params);
}
}package com.increase.api.example
import com.increase.api.client.IncreaseClient
import com.increase.api.client.okhttp.IncreaseOkHttpClient
import com.increase.api.models.beneficialowners.BeneficialOwnerListPage
import com.increase.api.models.beneficialowners.BeneficialOwnerListParams
fun main() {
val client: IncreaseClient = IncreaseOkHttpClient.fromEnv()
val params: BeneficialOwnerListParams = BeneficialOwnerListParams.builder()
.entityId("entity_id")
.build()
val page: BeneficialOwnerListPage = client.beneficialOwners().list(params)
}<?php
require_once dirname(__DIR__) . '/vendor/autoload.php';
use Increase\Client;
use Increase\Core\Exceptions\APIException;
$client = new Client(apiKey: getenv('INCREASE_API_KEY'));
try {
$page = $client->beneficialOwners->list(
entityID: 'entity_id', cursor: 'cursor', idempotencyKey: 'x', limit: 1
);
var_dump($page);
} catch (APIException $e) {
echo $e->getMessage();
}using System;
using Increase.Api;
using Increase.Api.Models.BeneficialOwners;
IncreaseClient client = new();
BeneficialOwnerListParams parameters = new() { EntityID = "entity_id" };
var page = await client.BeneficialOwners.List(parameters);
await foreach (var item in page.Paginate())
{
Console.WriteLine(item);
}{
"data": [
{ /* Beneficial Owner object */ },
{ /* Beneficial Owner object */ }
/* ... */
],
"next_cursor": "v57w5d",
}The identifier of the Entity to list beneficial owners for. Only corporation entities have beneficial owners.
Filter records to the one with the specified idempotency_key you chose for that object. This value is unique across Increase and is used to ensure that a request is only processed once. Learn more about idempotency.
curl -X "POST" \
--url "${INCREASE_URL}/entity_beneficial_owners" \
-H "Authorization: Bearer ${INCREASE_API_KEY}" \
-H "Content-Type: application/json" \
-d $'{
"company_title": "CEO",
"entity_id": "entity_n8y8tnk2p9339ti393yi",
"individual": {
"address": {
"city": "New York",
"country": "US",
"line1": "33 Liberty Street",
"state": "NY",
"zip": "10045"
},
"date_of_birth": "1970-01-31",
"identification": {
"method": "social_security_number",
"number": "078051120"
},
"name": "Ian Crease"
},
"prongs": [
"control"
]
}'import Increase from 'increase';
const client = new Increase({
apiKey: process.env['INCREASE_API_KEY'], // This is the default and can be omitted
});
const entityBeneficialOwner = await client.beneficialOwners.create({
entity_id: 'entity_n8y8tnk2p9339ti393yi',
individual: {
address: {
city: 'New York',
country: 'US',
line1: '33 Liberty Street',
},
date_of_birth: '1970-01-31',
identification: { method: 'social_security_number', number: '078051120' },
name: 'Ian Crease',
},
prongs: ['control'],
});
console.log(entityBeneficialOwner.id);import os
from datetime import date
from increase import Increase
client = Increase(
api_key=os.environ.get("INCREASE_API_KEY"), # This is the default and can be omitted
)
entity_beneficial_owner = client.beneficial_owners.create(
entity_id="entity_n8y8tnk2p9339ti393yi",
individual={
"address": {
"city": "New York",
"country": "US",
"line1": "33 Liberty Street",
},
"date_of_birth": date.fromisoformat("1970-01-31"),
"identification": {
"method": "social_security_number",
"number": "078051120",
},
"name": "Ian Crease",
},
prongs=["control"],
)
print(entity_beneficial_owner.id)require "increase"
increase = Increase::Client.new(
api_key: ENV["INCREASE_API_KEY"] # This is the default and can be omitted
)
entity_beneficial_owner = increase.beneficial_owners.create(
entity_id: "entity_n8y8tnk2p9339ti393yi",
individual: {
address: {city: "New York", country: "US", line1: "33 Liberty Street"},
date_of_birth: "1970-01-31",
identification: {method: :social_security_number, number: "078051120"},
name: "Ian Crease"
},
prongs: [:control]
)
puts(entity_beneficial_owner)package main
import (
"context"
"fmt"
"os"
"time"
"github.com/Increase/increase-go"
"github.com/Increase/increase-go/option"
)
func main() {
client := increase.NewClient(
option.WithAPIKey(os.Getenv("INCREASE_API_KEY")), // This is the default and can be omitted
)
entityBeneficialOwner, err := client.BeneficialOwners.New(context.TODO(), increase.BeneficialOwnerNewParams{
EntityID: increase.F("entity_n8y8tnk2p9339ti393yi"),
Individual: increase.F(increase.BeneficialOwnerNewParamsIndividual{
Address: increase.F(increase.BeneficialOwnerNewParamsIndividualAddress{
City: increase.F("New York"),
Country: increase.F("US"),
Line1: increase.F("33 Liberty Street"),
}),
DateOfBirth: increase.F(time.Now()),
Identification: increase.F(increase.BeneficialOwnerNewParamsIndividualIdentification{
Method: increase.F(increase.BeneficialOwnerNewParamsIndividualIdentificationMethodSocialSecurityNumber),
Number: increase.F("078051120"),
}),
Name: increase.F("Ian Crease"),
}),
Prongs: increase.F([]increase.BeneficialOwnerNewParamsProng{increase.BeneficialOwnerNewParamsProngControl}),
})
if err != nil {
panic(err.Error())
}
fmt.Printf("%+v\n", entityBeneficialOwner.ID)
}
package com.increase.api.example;
import com.increase.api.client.IncreaseClient;
import com.increase.api.client.okhttp.IncreaseOkHttpClient;
import com.increase.api.models.beneficialowners.BeneficialOwnerCreateParams;
import com.increase.api.models.beneficialowners.EntityBeneficialOwner;
import java.time.LocalDate;
public final class Main {
private Main() {}
public static void main(String[] args) {
IncreaseClient client = IncreaseOkHttpClient.fromEnv();
BeneficialOwnerCreateParams params = BeneficialOwnerCreateParams.builder()
.entityId("entity_n8y8tnk2p9339ti393yi")
.individual(BeneficialOwnerCreateParams.Individual.builder()
.address(BeneficialOwnerCreateParams.Individual.Address.builder()
.city("New York")
.country("US")
.line1("33 Liberty Street")
.build())
.dateOfBirth(LocalDate.parse("1970-01-31"))
.identification(BeneficialOwnerCreateParams.Individual.Identification.builder()
.method(BeneficialOwnerCreateParams.Individual.Identification.Method.SOCIAL_SECURITY_NUMBER)
.number("078051120")
.build())
.name("Ian Crease")
.build())
.addProng(BeneficialOwnerCreateParams.Prong.CONTROL)
.build();
EntityBeneficialOwner entityBeneficialOwner = client.beneficialOwners().create(params);
}
}package com.increase.api.example
import com.increase.api.client.IncreaseClient
import com.increase.api.client.okhttp.IncreaseOkHttpClient
import com.increase.api.models.beneficialowners.BeneficialOwnerCreateParams
import com.increase.api.models.beneficialowners.EntityBeneficialOwner
import java.time.LocalDate
fun main() {
val client: IncreaseClient = IncreaseOkHttpClient.fromEnv()
val params: BeneficialOwnerCreateParams = BeneficialOwnerCreateParams.builder()
.entityId("entity_n8y8tnk2p9339ti393yi")
.individual(BeneficialOwnerCreateParams.Individual.builder()
.address(BeneficialOwnerCreateParams.Individual.Address.builder()
.city("New York")
.country("US")
.line1("33 Liberty Street")
.build())
.dateOfBirth(LocalDate.parse("1970-01-31"))
.identification(BeneficialOwnerCreateParams.Individual.Identification.builder()
.method(BeneficialOwnerCreateParams.Individual.Identification.Method.SOCIAL_SECURITY_NUMBER)
.number("078051120")
.build())
.name("Ian Crease")
.build())
.addProng(BeneficialOwnerCreateParams.Prong.CONTROL)
.build()
val entityBeneficialOwner: EntityBeneficialOwner = client.beneficialOwners().create(params)
}<?php
require_once dirname(__DIR__) . '/vendor/autoload.php';
use Increase\Client;
use Increase\Core\Exceptions\APIException;
$client = new Client(apiKey: getenv('INCREASE_API_KEY'));
try {
$entityBeneficialOwner = $client->beneficialOwners->create(
entityID: 'entity_n8y8tnk2p9339ti393yi',
individual: [
'address' => [
'city' => 'New York',
'country' => 'US',
'line1' => '33 Liberty Street',
'line2' => 'x',
'state' => 'NY',
'zip' => '10045',
],
'dateOfBirth' => '1970-01-31',
'identification' => [
'method' => 'social_security_number',
'number' => '078051120',
'driversLicense' => [
'expirationDate' => '2019-12-27',
'fileID' => 'file_id',
'state' => 'xx',
'backFileID' => 'back_file_id',
],
'other' => [
'country' => 'x',
'description' => 'x',
'fileID' => 'file_id',
'backFileID' => 'back_file_id',
'expirationDate' => '2019-12-27',
],
'passport' => [
'country' => 'x',
'expirationDate' => '2019-12-27',
'fileID' => 'file_id',
],
],
'name' => 'Ian Crease',
'confirmedNoUsTaxID' => true,
],
prongs: ['control'],
companyTitle: 'CEO',
);
var_dump($entityBeneficialOwner);
} catch (APIException $e) {
echo $e->getMessage();
}using System;
using Increase.Api;
using Increase.Api.Models.BeneficialOwners;
IncreaseClient client = new();
BeneficialOwnerCreateParams parameters = new()
{
EntityID = "entity_n8y8tnk2p9339ti393yi",
Individual = new()
{
Address = new()
{
City = "New York",
Country = "US",
Line1 = "33 Liberty Street",
Line2 = "x",
State = "NY",
Zip = "10045",
},
DateOfBirth = "1970-01-31",
Identification = new()
{
Method = Method.SocialSecurityNumber,
Number = "078051120",
DriversLicense = new()
{
ExpirationDate = "2019-12-27",
FileID = "file_id",
State = "xx",
BackFileID = "back_file_id",
},
Other = new()
{
Country = "x",
Description = "x",
FileID = "file_id",
BackFileID = "back_file_id",
ExpirationDate = "2019-12-27",
},
Passport = new()
{
Country = "x",
ExpirationDate = "2019-12-27",
FileID = "file_id",
},
},
Name = "Ian Crease",
ConfirmedNoUsTaxID = true,
},
Prongs =
[
Prong.Control
],
};
var entityBeneficialOwner = await client.BeneficialOwners.Create(parameters);
Console.WriteLine(entityBeneficialOwner);This person’s role or title within the entity.
The identifier of the Entity to associate with the new Beneficial Owner.
Personal details for the beneficial owner.
Why this person is considered a beneficial owner of the entity. At least one option is required, if a person is both a control person and owner, submit an array containing both.
curl \
--url "${INCREASE_URL}/entity_beneficial_owners/entity_beneficial_owner_vozma8szzu1sxezp5zq6" \
-H "Authorization: Bearer ${INCREASE_API_KEY}"import Increase from 'increase';
const client = new Increase({
apiKey: process.env['INCREASE_API_KEY'], // This is the default and can be omitted
});
const entityBeneficialOwner = await client.beneficialOwners.retrieve(
'entity_beneficial_owner_vozma8szzu1sxezp5zq6',
);
console.log(entityBeneficialOwner.id);import os
from increase import Increase
client = Increase(
api_key=os.environ.get("INCREASE_API_KEY"), # This is the default and can be omitted
)
entity_beneficial_owner = client.beneficial_owners.retrieve(
"entity_beneficial_owner_vozma8szzu1sxezp5zq6",
)
print(entity_beneficial_owner.id)require "increase"
increase = Increase::Client.new(
api_key: ENV["INCREASE_API_KEY"] # This is the default and can be omitted
)
entity_beneficial_owner = increase.beneficial_owners.retrieve("entity_beneficial_owner_vozma8szzu1sxezp5zq6")
puts(entity_beneficial_owner)package main
import (
"context"
"fmt"
"os"
"github.com/Increase/increase-go"
"github.com/Increase/increase-go/option"
)
func main() {
client := increase.NewClient(
option.WithAPIKey(os.Getenv("INCREASE_API_KEY")), // This is the default and can be omitted
)
entityBeneficialOwner, err := client.BeneficialOwners.Get(context.TODO(), "entity_beneficial_owner_vozma8szzu1sxezp5zq6")
if err != nil {
panic(err.Error())
}
fmt.Printf("%+v\n", entityBeneficialOwner.ID)
}
package com.increase.api.example;
import com.increase.api.client.IncreaseClient;
import com.increase.api.client.okhttp.IncreaseOkHttpClient;
import com.increase.api.models.beneficialowners.BeneficialOwnerRetrieveParams;
import com.increase.api.models.beneficialowners.EntityBeneficialOwner;
public final class Main {
private Main() {}
public static void main(String[] args) {
IncreaseClient client = IncreaseOkHttpClient.fromEnv();
EntityBeneficialOwner entityBeneficialOwner = client.beneficialOwners().retrieve("entity_beneficial_owner_vozma8szzu1sxezp5zq6");
}
}package com.increase.api.example
import com.increase.api.client.IncreaseClient
import com.increase.api.client.okhttp.IncreaseOkHttpClient
import com.increase.api.models.beneficialowners.BeneficialOwnerRetrieveParams
import com.increase.api.models.beneficialowners.EntityBeneficialOwner
fun main() {
val client: IncreaseClient = IncreaseOkHttpClient.fromEnv()
val entityBeneficialOwner: EntityBeneficialOwner = client.beneficialOwners().retrieve("entity_beneficial_owner_vozma8szzu1sxezp5zq6")
}<?php
require_once dirname(__DIR__) . '/vendor/autoload.php';
use Increase\Client;
use Increase\Core\Exceptions\APIException;
$client = new Client(apiKey: getenv('INCREASE_API_KEY'));
try {
$entityBeneficialOwner = $client->beneficialOwners->retrieve(
'entity_beneficial_owner_vozma8szzu1sxezp5zq6'
);
var_dump($entityBeneficialOwner);
} catch (APIException $e) {
echo $e->getMessage();
}using System;
using Increase.Api;
using Increase.Api.Models.BeneficialOwners;
IncreaseClient client = new();
BeneficialOwnerRetrieveParams parameters = new()
{
EntityBeneficialOwnerID = "entity_beneficial_owner_vozma8szzu1sxezp5zq6"
};
var entityBeneficialOwner = await client.BeneficialOwners.Retrieve(parameters);
Console.WriteLine(entityBeneficialOwner);The identifier of the Beneficial Owner to retrieve.
curl -X "PATCH" \
--url "${INCREASE_URL}/entity_beneficial_owners/entity_beneficial_owner_vozma8szzu1sxezp5zq6" \
-H "Authorization: Bearer ${INCREASE_API_KEY}" \
-H "Content-Type: application/json" \
-d $'{
"address": {
"city": "New York",
"country": "US",
"line1": "33 Liberty Street",
"line2": "Unit 2",
"state": "NY",
"zip": "10045"
}
}'import Increase from 'increase';
const client = new Increase({
apiKey: process.env['INCREASE_API_KEY'], // This is the default and can be omitted
});
const entityBeneficialOwner = await client.beneficialOwners.update(
'entity_beneficial_owner_vozma8szzu1sxezp5zq6',
);
console.log(entityBeneficialOwner.id);import os
from increase import Increase
client = Increase(
api_key=os.environ.get("INCREASE_API_KEY"), # This is the default and can be omitted
)
entity_beneficial_owner = client.beneficial_owners.update(
entity_beneficial_owner_id="entity_beneficial_owner_vozma8szzu1sxezp5zq6",
)
print(entity_beneficial_owner.id)require "increase"
increase = Increase::Client.new(
api_key: ENV["INCREASE_API_KEY"] # This is the default and can be omitted
)
entity_beneficial_owner = increase.beneficial_owners.update("entity_beneficial_owner_vozma8szzu1sxezp5zq6")
puts(entity_beneficial_owner)package main
import (
"context"
"fmt"
"os"
"github.com/Increase/increase-go"
"github.com/Increase/increase-go/option"
)
func main() {
client := increase.NewClient(
option.WithAPIKey(os.Getenv("INCREASE_API_KEY")), // This is the default and can be omitted
)
entityBeneficialOwner, err := client.BeneficialOwners.Update(
context.TODO(),
"entity_beneficial_owner_vozma8szzu1sxezp5zq6",
increase.BeneficialOwnerUpdateParams{},
)
if err != nil {
panic(err.Error())
}
fmt.Printf("%+v\n", entityBeneficialOwner.ID)
}
package com.increase.api.example;
import com.increase.api.client.IncreaseClient;
import com.increase.api.client.okhttp.IncreaseOkHttpClient;
import com.increase.api.models.beneficialowners.BeneficialOwnerUpdateParams;
import com.increase.api.models.beneficialowners.EntityBeneficialOwner;
public final class Main {
private Main() {}
public static void main(String[] args) {
IncreaseClient client = IncreaseOkHttpClient.fromEnv();
EntityBeneficialOwner entityBeneficialOwner = client.beneficialOwners().update("entity_beneficial_owner_vozma8szzu1sxezp5zq6");
}
}package com.increase.api.example
import com.increase.api.client.IncreaseClient
import com.increase.api.client.okhttp.IncreaseOkHttpClient
import com.increase.api.models.beneficialowners.BeneficialOwnerUpdateParams
import com.increase.api.models.beneficialowners.EntityBeneficialOwner
fun main() {
val client: IncreaseClient = IncreaseOkHttpClient.fromEnv()
val entityBeneficialOwner: EntityBeneficialOwner = client.beneficialOwners().update("entity_beneficial_owner_vozma8szzu1sxezp5zq6")
}<?php
require_once dirname(__DIR__) . '/vendor/autoload.php';
use Increase\Client;
use Increase\Core\Exceptions\APIException;
$client = new Client(apiKey: getenv('INCREASE_API_KEY'));
try {
$entityBeneficialOwner = $client->beneficialOwners->update(
'entity_beneficial_owner_vozma8szzu1sxezp5zq6',
address: [
'city' => 'New York',
'country' => 'US',
'line1' => '33 Liberty Street',
'line2' => 'Unit 2',
'state' => 'NY',
'zip' => '10045',
],
confirmedNoUsTaxID: true,
identification: [
'method' => 'social_security_number',
'number' => 'xxxx',
'driversLicense' => [
'expirationDate' => '2019-12-27',
'fileID' => 'file_id',
'state' => 'xx',
'backFileID' => 'back_file_id',
],
'other' => [
'country' => 'x',
'description' => 'x',
'fileID' => 'file_id',
'backFileID' => 'back_file_id',
'expirationDate' => '2019-12-27',
],
'passport' => [
'country' => 'x',
'expirationDate' => '2019-12-27',
'fileID' => 'file_id',
],
],
name: 'x',
prongs: ['ownership'],
);
var_dump($entityBeneficialOwner);
} catch (APIException $e) {
echo $e->getMessage();
}using System;
using Increase.Api;
using Increase.Api.Models.BeneficialOwners;
IncreaseClient client = new();
BeneficialOwnerUpdateParams parameters = new()
{
EntityBeneficialOwnerID = "entity_beneficial_owner_vozma8szzu1sxezp5zq6"
};
var entityBeneficialOwner = await client.BeneficialOwners.Update(parameters);
Console.WriteLine(entityBeneficialOwner);The identifier of the Beneficial Owner to update.
The individual’s physical address. Mail receiving locations like PO Boxes and PMB’s are disallowed.
The identification method for an individual can only be a passport, driver’s license, or other document if you’ve confirmed the individual does not have a US tax id (either a Social Security Number or Individual Taxpayer Identification Number).
A means of verifying the person’s identity.
The individual’s legal name.
Why this person is considered a beneficial owner of the entity. At least one option is required, if a person is both a control person and owner, submit an array containing both. Providing this replaces the beneficial owner’s current prongs.
curl -X "POST" \
--url "${INCREASE_URL}/entity_beneficial_owners/entity_beneficial_owner_vozma8szzu1sxezp5zq6/archive" \
-H "Authorization: Bearer ${INCREASE_API_KEY}"import Increase from 'increase';
const client = new Increase({
apiKey: process.env['INCREASE_API_KEY'], // This is the default and can be omitted
});
const entityBeneficialOwner = await client.beneficialOwners.archive(
'entity_beneficial_owner_vozma8szzu1sxezp5zq6',
);
console.log(entityBeneficialOwner.id);import os
from increase import Increase
client = Increase(
api_key=os.environ.get("INCREASE_API_KEY"), # This is the default and can be omitted
)
entity_beneficial_owner = client.beneficial_owners.archive(
"entity_beneficial_owner_vozma8szzu1sxezp5zq6",
)
print(entity_beneficial_owner.id)require "increase"
increase = Increase::Client.new(
api_key: ENV["INCREASE_API_KEY"] # This is the default and can be omitted
)
entity_beneficial_owner = increase.beneficial_owners.archive("entity_beneficial_owner_vozma8szzu1sxezp5zq6")
puts(entity_beneficial_owner)package main
import (
"context"
"fmt"
"os"
"github.com/Increase/increase-go"
"github.com/Increase/increase-go/option"
)
func main() {
client := increase.NewClient(
option.WithAPIKey(os.Getenv("INCREASE_API_KEY")), // This is the default and can be omitted
)
entityBeneficialOwner, err := client.BeneficialOwners.Archive(context.TODO(), "entity_beneficial_owner_vozma8szzu1sxezp5zq6")
if err != nil {
panic(err.Error())
}
fmt.Printf("%+v\n", entityBeneficialOwner.ID)
}
package com.increase.api.example;
import com.increase.api.client.IncreaseClient;
import com.increase.api.client.okhttp.IncreaseOkHttpClient;
import com.increase.api.models.beneficialowners.BeneficialOwnerArchiveParams;
import com.increase.api.models.beneficialowners.EntityBeneficialOwner;
public final class Main {
private Main() {}
public static void main(String[] args) {
IncreaseClient client = IncreaseOkHttpClient.fromEnv();
EntityBeneficialOwner entityBeneficialOwner = client.beneficialOwners().archive("entity_beneficial_owner_vozma8szzu1sxezp5zq6");
}
}package com.increase.api.example
import com.increase.api.client.IncreaseClient
import com.increase.api.client.okhttp.IncreaseOkHttpClient
import com.increase.api.models.beneficialowners.BeneficialOwnerArchiveParams
import com.increase.api.models.beneficialowners.EntityBeneficialOwner
fun main() {
val client: IncreaseClient = IncreaseOkHttpClient.fromEnv()
val entityBeneficialOwner: EntityBeneficialOwner = client.beneficialOwners().archive("entity_beneficial_owner_vozma8szzu1sxezp5zq6")
}<?php
require_once dirname(__DIR__) . '/vendor/autoload.php';
use Increase\Client;
use Increase\Core\Exceptions\APIException;
$client = new Client(apiKey: getenv('INCREASE_API_KEY'));
try {
$entityBeneficialOwner = $client->beneficialOwners->archive(
'entity_beneficial_owner_vozma8szzu1sxezp5zq6'
);
var_dump($entityBeneficialOwner);
} catch (APIException $e) {
echo $e->getMessage();
}using System;
using Increase.Api;
using Increase.Api.Models.BeneficialOwners;
IncreaseClient client = new();
BeneficialOwnerArchiveParams parameters = new()
{
EntityBeneficialOwnerID = "entity_beneficial_owner_vozma8szzu1sxezp5zq6"
};
var entityBeneficialOwner = await client.BeneficialOwners.Archive(parameters);
Console.WriteLine(entityBeneficialOwner);The identifier of the Beneficial Owner to archive.