Get Standing Orders By Debit Account Number

This returns a customer's standing orders

To get a customer's standing orders by their debit account number you first build the get standing orders endpoint by passing debitaccountNumber, pageIndex, and pageSize to the url query params then you make a get request to the complete endpoint.

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/GetStandingOrdersByDebitAccountNumber?debitaccountNumber=&pageIndex{{page_index}}=&pageSize={{page_size}}

Staging URL

http://staging.mybankone.com/BankOneWebAPI/api/StandingOrder/GetStandingOrdersByDebitAccountNumber?debitaccountNumber=&pageIndex{{page_index}}=&pageSize={{page_size}}

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

GET http://staging.mybankone.com/BankOneWebAPI/api/StandingOrder/GetStandingOrdersByDebit

Query Parameters

Name
Type
Description

debitaccountNumber*

String

Customer's debit account number

pageIndex*

Int

Number of index page

pageSize

Int

Size of page

{
    // Response
}

Last updated