Standing Order Creation Application2
This creates a standing order application
To create a standing order application you first build the complete create standing order application endpoint by passing version to the url path and authToken to the url query params.
Then go ahead to make a post request to the complete url by passing Name, Description, CreditAccount, DebitAccount, and some other required payload in the request body.
Production URL
Staging URL
Here is an example request with sample payload to the staging endpoint.
POST
http://staging.mybankone.com/BankOneWebAPI/api/StandingOrder/StandingOrderCreationApplication2
Path Parameters
version*
Int
Current API version
Query Parameters
authToken*
String
Authentication for this request
Request Body
Name*
String
Customer's name
Description*
String
Order description
CreditAccount*
String
Account you want credited
DebitAccount*
String
Account you want debited
AmountToTransfer*
Int
Amount to transfer
AllowForceDebit*
Boolean
Checks if account allows force debit
IsPercentage*
Boolean
Checks if it has a percentage
StandingOrderFrequency*
Int
standing order frequency
StartDate*
Date
Start date of standing order
EndDate*
Date
End date of standing order
StandingOrderChargeFeeID*
Int
Standing order charge fee Id
StandingOrderChargeFeeAmount*
Int
Standing order charge fee
Last updated