Cancel Standing Order

This cancels a customer's standing order request

To cancel a customer's standing order you need to first build the complete cancel standing order endpoint by passing version in url path and authToken in the query params.

Then you make a post request to this endpoint by passing standingOrderID and accountNumber 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/CancelStandingOrder/version?authToken={{auth_token}}

Staging URL

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

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

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

Path Parameters

Name
Type
Description

version*

Int

Current version for this request

authToken*

Int

Authentication Code for this request

{
    // Response
}

Last updated