taler-docs

Documentation for GNU Taler components, APIs and protocols
Log | Files | Refs | README | LICENSE

post-submit.rst (752B)


      1 .. http:post:: /submit
      2 
      3   Submit an file to the EBICS server using a chosen order.
      4 
      5   **Request:**
      6 
      7   :formparam file: The file to submit.
      8   :formparam order: The is of the EBICS order to use.
      9 
     10   **Response:**
     11 
     12   :http:statuscode:`200 OK`:
     13     Response is a `SubmitResponse`.
     14   :http:statuscode:`400 Bad request`:
     15     Input data was invalid.
     16   :http:statuscode:`401 Unauthorized`:
     17     Invalid or missing credentials.
     18   :http:statuscode:`403 Forbidden`:
     19     Missing rights.
     20   :http:statuscode:`409 Conflict`:
     21     EBICS server validation error.
     22   :http:statuscode:`502 Bad Gateway`:
     23     EBICS server connection error.
     24 
     25   **Details:**
     26 
     27   .. ts:def:: SubmitResponse
     28 
     29     interface SubmitResponse {
     30       // EBICS upload order ID
     31       order: string;
     32     }