GetFundEntities

Filter inputs inherits from GetPersons

NameTypeDescriptionMandatoryAvailable from version
CompanyNumbersstring[]Filter by company numbers

FundCompanyIdsGuid[]Filter by BFS-id of associated fund companies

FundNamesstring[]Filter by fund entity names

Response rows (Array) inherits from EntityBase

NameTypeDescriptionAvailable from version
CustomerNostringThe customer number
CompanyNumberstringThe company number
FundCompanyIdGuidThe BFS-id of the fund company
FundNamestringThe name of the fund entity
StreetAddressstringThe address of the fund entity
PostalCodestringThe postal code of the fund entity
UserNamestringThe username of the fund entity
EmailstringThe e-mail address of the fund entity
CitystringThe city of the fund entity
CountrystringThe ISO code of the country https://en.wikipedia.org/wiki/ISO_3166-1_alpha-2
JurisdictionstringThe ISO code of the country for the legal jurisdiction of the fund entity https://en.wikipedia.org/wiki/ISO_3166-1_alpha-2
TaxCountrystringThe ISO code of the tax country for the fund entity
ParentCompanyGuidThe BrickId of a relating LegalEntity that is a parent company.2.30

Code examples

C# - GetFundEntity
//Use the GetFundEntity method 
var client = new BFSServiceReference.bfsapiSoapClient();

var credentials = new BFSServiceReference.Credentials()
{
    UserName = bfsusername, //Username of administrative user in your instance of BFS
    Password = bfspassword, //Password of the administrative user in your instance of BFS
};

var fundentity = client.GetFundEntity(new BFSServiceReference.GetFundEntityRequest()
{
    Credentials = credentials,

    identify = bfsidentifier, //Identifier is a unique token for your instance of BFS

    Args = new BFSServiceReference.GetFundEntityArgs()
    {
        
    },
    Fields = new BFSServiceReference.GetFundEntityFields()
    {
        BrickId = true,
        CompanyNumber = true,
        FundName = true,
        FundCompanyId = true
    },
});

foreach (var c in fundentity.Result)
{
    Console.WriteLine(c.BrickId + ", "
        + c.CompanyNumber + ", "
        + c.FundName + ", "
        + c.FundCompanyId);
}


Blog stream

Create a blog post to share news and announcements with your team and company.

Terms of License
Change Policy
© 2009 - 2024 Huddlestock Technologies AB All rights reserved