Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

Filter inputs

...

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 executedCountintNumber of times the payment has been 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 Block
languagec#
themeRDark
titleC# - GetRecurringOrderTemplates
linenumberstrue
collapsetrue
            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,
                Count = true,
                TransferReceiver = true,
                StatusKey = true,
                Amount = true,
                BusinessDate = true,
                IsRecurringOrder = true,
                CurrencyCode = true
            };

            var response = target.GetRecurringOrderTemplates(req);

...