GetAssetAccountTypeLimitations

Filter inputs

NameTypeDescriptionMandatoryAvailable from version
BrickIdsGuid[]Filter by array of BrickIds. 2.10
AccountTypesGuid[]Filter by array of AccountTypeIds. 2.10
AssetsGuid[]Filter by array of AssetIds. (Cash or Instrument) 2.10

Response rows (Array) inherits from EntityBase

NameTypeDescriptionAvailable from version
BrickIdGuidThe BrickId of the asset2.10
AccountTypeGuidThe BrickId (unique id) of the account type2.10
AssetGuidThe BrickId (unique id) of the asset2.10

Code examples

C# - Example Code
 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 request = new GetAssetAccountTypeLimitationRequest
{
    Credentials = credentials,
    identify = bfsidentifier, //Identifier is a unique token for your instance of BFS
  
    //Select the fields you want the response to contain
    Fields = new GetAssetAccountTypeLimitationFields
    {
         Asset = true,
         AccountType = true
    },
 
    //Empty filter gets all cash from the system
    Args = new GetAssetAccountTypeLimitationArgs()
};
 

 

Blog Posts

Terms of License
Change Policy
© 2009 - 2024 Huddlestock Technologies AB All rights reserved