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 6 Next »

Filter inputs

NameTypeDescriptionMandatoryAvailable from version
BrickIdsGuid[]


OrderNostring[]


AccountsGuid[]


Response rows (Array) inherits from EntityBase

NameTypeDescriptionAvailable from version
BrickIdGuidThe BrickId (unique id) of the account type 2.14
CreatedDateDateTimeDate the order template was created
PeriodicityCodestring

One of:

"O" - One time

"M" - Monthly

"Q" - Quaterly

"H" - Half yearly

"Y" - Yearly


OrderNostringOrder number
AccountIdGuidReference to the Account
DayintDay of month when payment will be executed
TransferReceiverGuidReference to the transfer reciever 
StatusKeystringActive or InActive
AmountdecimalAmount that will be transfered
BusinessDateDateTimeThe date of the next payment
IsRecurringOrderbooltrue if this is an recurring order 
CurrencyCodestringCurrency code of amount (ex "SEK")

Code examples

C# - GetRecurringOrderTemplates
            var req = new bfsapi.GetRecurringOrderTemplatesRequest()
            {
                Credentials = new bfsapi.Credentials
                {
                    UserName = "theUserName",
                    Password = "theVerySecurePassword"
                },
                identify = "theIdentifyString"
            };

            req.Args = new bfsapi.GetRecurringOrderTemplatesArgs()
            {
                BrickIds = new Guid[] { new Guid("4257b69d-32b3-4d7c-9f33-0f8d6350c35b") }
            };

            req.Fields = new bfsapi.GetRecurringOrderTemplatesFields()
            {
                BrickId = true,
                CreatedDate = true,
                PeriodicityCode = true,
                OrderNo = true,
                AccountId = true,
                TransferReceiver = true,
                StatusKey = true,
                Amount = true,
                BusinessDate = true,
                IsRecurringOrder = true,
                CurrencyCode = true
            };

            var response = target.GetRecurringOrderTemplates(req);



  • No labels