Filter inputs inherits fromĀ GetPersons
...
Name | Type | Description | Available from version |
---|---|---|---|
CustomerNo | string | The customer number | |
CompanyNumber | string | The company number | |
FundCompanyId | Guid | The BFS-id of the fund company | |
FundName | string | The name of the fund entity | |
StreetAddress | string | The address of the fund entity | |
PostalCode | string | The postal code of the fund entity | |
UserName | string | The username of the fund entity | |
string | The e-mail address of the fund entity | ||
City | string | The city of the fund entity | |
Country | string | The ISO code of the country https://en.wikipedia.org/wiki/ISO_3166-1_alpha-2 | |
Jurisdiction | string | The ISO code of the country for the legal jurisdiction of the fund entity https://en.wikipedia.org/wiki/ISO_3166-1_alpha-2 | |
TaxCountry | string | The ISO code of the tax country for the fund entity | |
ParentCompany | Guid | The BrickId of a relating LegalEntity that is a parent company. | 2.30 |
Code examples
Code Block | ||||||||||
---|---|---|---|---|---|---|---|---|---|---|
| ||||||||||
//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); } |
...