Filter inputs
...
inherit fromĀ GetPersons
Name | Type | Description | Mandatory | Available from version |
|---|---|---|---|---|
CompanyNumbers | string[] | Filter by company numbers | ||
FundCompanyNames | string[] | Filter by company names |
Response rows (Array)
...
inherit fromĀ GetPersons
Name | Type | Description | Available from version |
|---|---|---|---|
CompanyNumber | string | The company number | |
FundCompanyName | string | The company name |
Code examples
...
C# - GetFundCompanies
| Code Block | |||
|---|---|---|---|
| |||
//Use the GetFundCompanies 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 fundcompanies = client.GetFundCompanies(new BFSServiceReference.GetFundCompaniesRequest()
{
Credentials = credentials,
identify = bfsidentifier, //Identifier is a unique token for your instance of BFS
Args = new BFSServiceReference.GetFundCompaniesArgs()
{
},
Fields = new BFSServiceReference.GetFundCompaniesFields()
{
BrickId = true,
CompanyNumber = true,
FundCompanyName = true,
},
});
foreach (var c in fundcompanies.Result)
{
Console.WriteLine(c.BrickId + ", "
+ c.CompanyNumber + ", "
+ c.FundCompanyName);
} |
| Blog Posts | ||||||
|---|---|---|---|---|---|---|
|