Application Flow

A High Level Overview of the Application Flow

  1. Initializing a sign request

    1. A server-side POST request is made to the /api/sign/plaintext endpoint.
      The request body contains a return_url parameter holding a URL that the user should be redirected to when the user has signed.

    2. The response body from the request contains a redirect_url parameter holding a URL that the application should redirect the user to.

  2. Finalizing a sign request

    1. When the signature is completed, the user is redirected to the return_url along with a query string parameter called state.

    2. The value of the state parameter should be sent to the endpoint /api/sign/plaintext/finalize using a POST request.

    3. If the state value is valid, the response body will contain a transaction_id parameter and a receipt_url parameter.

    4. The transaction is now completed.