Contents

POST /submit#

Submit an file to the EBICS server using a chosen order.

Request:

Form Parameters:
  • file – The file to submit.

  • order – The is of the EBICS order to use.

Response:

200 OK:

Response is a SubmitResponse.

400 Bad request:

Input data was invalid.

401 Unauthorized:

Invalid or missing credentials.

403 Forbidden:

Missing rights.

409 Conflict:

EBICS server validation error.

502 Bad Gateway:

EBICS server connection error.

Details:

interface SubmitResponse {
  // EBICS upload order ID
  order: string;
}