/
GetFundCompanies
GetFundCompanies
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
//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.
, multiple selections available,
Related content
GetInstruments
GetInstruments
Read with this
GetFundEntities
GetFundEntities
More like this
GetPersons
GetPersons
Read with this
GetOrderTypes
GetOrderTypes
More like this
1. Create the fund company
1. Create the fund company
Read with this
GetAssetAccountTypeLimitations
GetAssetAccountTypeLimitations
More like this
Terms of License
Change Policy
© 2009 - 2024 Huddlestock Technologies AB All rights reserved