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 8 Current »

Filter inputs 

No inputs are used.

Response rows

NameTypeDescriptionAvailable from version
BrickIdGuid

The BrickId of the legal entity

2.02
OrganizationNostringThe organization number of the house2.02
NamestringThe name of the house2.02
BICstringThe BIC code of the house2.03.01
TaxCountrystringAccording to ISO-standard here: https://en.wikipedia.org/wiki/ISO_3166-1_alpha-22.03.01
BaseCurrencyCodestringThe currency code of the house base currency2.03.01
LEIstringThe LEI of the House2.12
GIINstringGIIN (global intermediary identification number) of Person2.24


Code examples

C# - Get the house information from a BFS instance
//Use the GetHouseInformation method to get the house information
// and write the BrickId, Organization number and the name in the console.
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 houseInfo = client.GetHouseInformation(new BFSServiceReference.GetHouseInformationRequest()
{
    Credentials = credentials,
    identify = bfsidentifier, //Identifier is a unique token for your instance of BFS
   
    Fields = new BFSServiceReference.GetHouseInformationFields()
    {
        BrickId = true,
        OrganizationNo = true,
        Name = true,
        BIC = true,
        TaxCountry = true,
        BaseCurrencyCode = true
    },
});
foreach (var c in houseInfo.Result)
{
    Console.WriteLine(c.BrickId + "," + c.OrganizationNo + "," + c.Name + "," + c.BIC + "," + c.TaxCountry + "," + c.BaseCurrencyCode);
}
  • No labels