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.

We have a Production URL and Staging URL you are advised to use the staging during development.

Production URL

http://api.mybankone.com/BankOneWebAPI/api/StandingOrder/StandingOrderCreationApplication2/version?authToken={{authoken}}

Staging URL

http://staging.mybankone.com/BankOneWebAPI/api/StandingOrder/StandingOrderCreationApplication2/version?authToken={{authoken}}

Here is an example request with sample payload to the staging endpoint.

POST http://staging.mybankone.com/BankOneWebAPI/api/StandingOrder/StandingOrderCreationApplication2

Path Parameters

Name
Type
Description

version*

Int

Current API version

Query Parameters

Name
Type
Description

authToken*

String

Authentication for this request

Request Body

Name
Type
Description

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

{
    // Response
}

Last updated