Publish Documents

Integrating Digital Document Signing with ADO Technologies

For clients looking to incorporate digital document signing capabilities into their platforms, ADO Technologies offers a robust solution that requires the implementation of specific web services. This guide outlines the necessary steps to enable ADO's solution to retrieve documents for signing, focusing on the RESTful web service that utilizes OAuth2 authentication and exposes essential methods for the digital signing process.

Required Web Service Methods

To facilitate digital document signing, your platform must expose a RESTful web service with OAuth2 authentication, detailing the following methods:

Token Generation (Authentication)

Example Request:

POST /api/token HTTP/1.1
Host: localhost:62859
Content-Type: application/x-www-form-urlencoded
username=admin&password=password&grant_type=password

Response Fields:

Retrieve Documents for Signing

Example Request

 

POST /api/Integration/Documents HTTP/1.1
Host: localhost:62859
Authorization: Bearer your_access_token
Content-Type: application/json
{
   "JsonTransaction": {
       // Transaction details
   }
}

Response

An array of strings, each containing a document in base64 format to be signed.

Implementing the Service


Revision #2
Created 27 March 2024 22:53:00 by Admin
Updated 29 May 2024 14:54:14 by Admin