API v1.5 · Web SDK
Electronic signature, identity validation and document automation. Here is the REST API and the web SDK that connect them to your product.
curl -X POST https://api.auco.ai/v1.5/ext/document/save \ -H "Authorization: prk_tuLlavePrivada" \ -H "Content-Type: application/json" \ -d '{ "email": "ana@empresa.co", "document": "64823dc5ce28a265e02d68f3", "name": "Contrato laboral", "sign": true, "notification": false }'
await fetch('https://api.auco.ai/v1.5/ext/document/save', { method: 'POST', headers: { 'Authorization': 'prk_tuLlavePrivada', 'Content-Type': 'application/json', }, body: JSON.stringify({ email: 'ana@empresa.co', document: '64823dc5ce28a265e02d68f3', name: 'Contrato laboral', sign: true, notification: false, }), });
import requests requests.post( "https://api.auco.ai/v1.5/ext/document/save", headers={"Authorization": "prk_tuLlavePrivada"}, json={ "email": "ana@empresa.co", "document": "64823dc5ce28a265e02d68f3", "name": "Contrato laboral", "sign": True, "notification": False, }, )
{
"document": "DOCUMENTCODE",
"signProfile": [
{ "id": "ZR", "email": "example@auco.ai" }
]
}From a template or your own PDF, with the list of signers.
Embedded in your site or from the link Auco sends.
Every status change reaches your endpoint in real time.
Signed document and full traceability of the process.
Create the process, define where each party signs, and send it.
Face biometrics, document matching and restriction lists.
Set up your webhook and listen to every phase of the process.