Contents

GET /submit#

Obtains a list of the orders that can be used.

Response:

200 OK:

The server responds with a ListSubmitOrders object.

401 Unauthorized:

Invalid or missing credentials.

403 Forbidden:

Missing rights.

Details:

interface ListSubmitOrders {
  orders: SubmitOrder[];
}
interface SubmitOrder {
  // EBICS order id to uniquely identify this order
  id: string;

  // EBICS order description provided by the EBICS server
  description: string;
}