Signatures
Streamline the signature process, ensure compliance and provide digital signatures with the exact certainty over identity of signatories.
Signing at
(platform name)
5:41 PM
Information
Agreement document ID:
doc_2354fd6-58dc-4a
The contract between party A and party B in regards to a designated item X has been delegated for transfer between these parties.
Contract as seen:
https://contracts.example.com/doc/doc_2354fd6-58dc-4a
Sign documents
Allow your users to digitally sign documents and contracts with their personal eID to ensure seamless and secure process. We help you with the underlying identity basics, so you can focus on running your business.
- Instant sealing and secure encryption
- Certainty over identity of signatories with help of our chain directory
- Hosted or Self-hosted signatory flows.
- Active developer support in our Slack channel
For developers, by developers
Simple integration
Integrate pasby signatures into your own application and processes through our flexible REST API. Upload document, propagate signing request, wait for signatures, and finally download signed document.
import Pasby from '@finsel-dgi/pasby'
const pasby = new Pasby({
apikeyAuth: 'bk-live_',
appSecretKey: 'prd_',
});
const response = await pasby.docs.docSign({
webhook: {
'host': 'https://my-endpoint.site.com',
'reference': 'some_ref'
},
to: [
'12345678910',
'77772477777',
'22200044534'
], // signatory list of national identification numbers
file: {
title: 'Example Document',
url: 'https://file.example.com/bucket/some-document.pdf'
},
});