//Use the GetFeeGroups 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 feeGroups = client.GetFeeGroups(new BFSServiceReference.GetFeeGroupRequest()
{
Credentials = credentials,
identify = bfsidentifier, //Identifier is a unique token for your instance of BFS
Args = new GetFeeGroupArgs(){},
Fields = new BFSServiceReference.GetFeeGroupFields()
{
BrickId = true,
Key = true
},
});
foreach (var c in feeGroups.Result)
{
Console.WriteLine(c.BrickId + ";" + c.Key );
}