Skip to end of metadata
Go to start of metadata

You are viewing an old version of this page. View the current version.

Compare with Current View Page History

« Previous Version 3 Current »

Filter inputs inherits from GetPersons

NameTypeDescriptionMandatoryAvailable from version
CompanyNumbersstring[]Filter by company numbers

FundCompanyNamesstring[]Filter by company names

Response rows (Array) inherits from GetPersons

NameTypeDescriptionAvailable from version
CompanyNumberstringThe company number
FundCompanyNamestringThe company name

Code examples

C# - GetFundCompanies
//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 stream

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

  • No labels