v1

latestOpenAPI 3.1.0© Modulr Finance2026-08-04207430590.4 KB
Payment Initiations

Initiate standing order from ASPSP

Initiate a new standing order to the specified destination account from an account held at an ASPSP.

post/standing-order-initiations

Request body

aspspIdstring required

Identifier for ASPSP being used for the standing order

Example request

{
  "aspspId": "H100000001",
  "payment": {
    "destination": {
      "id": "A1100001",
      "accountNumber": "12345678",
      "sortCode": "000000",
      "name": "Test"
    },
    "reference": "Invoice ABC123"
  },
  "schedule": {
    "initialDate": "2021-03-25",
    "finalDate": "2021-03-25"
  }
}

Response

Created

standingOrderInitiationIdstring

The unique identifier of the standing order initiation request at Modulr

redirectUrlstring

A redirect URL for the user to authorise the standing order initiation request at the ASPSP

Example response

{
  "standingOrderInitiationId": "I000000001",
  "redirectUrl": "https://www.bankofmoney.com/authorize"
}