Application Flow¶
A High Level Overview of the Application Flow¶
-
Initializing a sign request
-
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. -
The response body from the request contains a redirect_url parameter holding a URL that the application should redirect the user to.
-
-
Finalizing a sign request
-
When the signature is completed, the user is redirected to the return_url along with a query string parameter called state.
-
The value of the state parameter should be sent to the endpoint /api/sign/plaintext/finalize using a POST request.
-
If the state value is valid, the response body will contain a transaction_id parameter and a receipt_url parameter.
-
The transaction is now completed.
-