Skip to main content

Package Signing

The Package Signing SDK allows you to complete the electronic signature process for multiple documents grouped into a single flow, ensuring the same identity validation for all included documents. This solution is designed for cases where multiple files need to be signed together, maintaining the integrity and consistency of the package.

warning

The signature process validations are configured at the time of process creation, so they cannot be modified or overridden during SDK integration.

Integration Example

warning

For the integration, it is necessary to have an <iframe id='iframeId'> element where the SDK will be rendered, and the AucoSDK function must be provided with the ID of this element.

info

Follow the link to see the reference of the events required for an SDK integration: 👉🏻 Events

import { AucoSDK } from 'auco-sdk-integration';

const unsubscribe = AucoSDK({
iframeId: 'iframeId',
sdkType: 'sign',
language: 'es', // Accepted languages ​​'es' | 'en'
events: {
onSDKReady,
onSDKClose,
},
sdkData: {
document: 'WO0J4L3YWBWE', // Process code pending signature
signFlow: 'package',
uxOptions: {
primaryColor: '#021c30',
alternateColor: '#a557f2',
},
},
env: process.env.PUBLIC_ENVIRONMENT === 'dev' ? 'DEV' : 'PROD',
});
info

Each signer has a 2-character ID that identifies them. In the integration, the document code must be specified concatenated with this ID as follows:

  • Document code: WO0J4L3YWB
  • Signer ID: WE
  • Integration code: WO0J4L3YWBWE