Getting Started
Learn how Criipto Signatures handles your documents securely and safely.
createSignatureOrder
you send along document blobs with it,
upon receiving it we validate it and then encrypt it and store it on Azure servers.You can download your document from the Criipto Signatures API at any point up until after closeSignatureOrder
is called.
Auto-expired and cancelled signature orders also have their documents automatically deleted.
Documents are stored in Azure Datacenters in Europe, documents are always encrypted.
If you wish to extend document lifetime so that it exists on Criiptos servers beyond closeSignatureOrder
you can send {retainDocumentsForDays: [number 1-7]}
as input to closeSignatureOrder
.
The documents will then stay available on the signature order until the configured amount of days has passed where at which point they will be deleted from Criiptos servers.
To ensure the highest protection of personal data you must make sure to clean up signature orders as soon as you can verify you have securely stored documents on your own servers, you can do so by calling the cleanupSignatureOrder
mutation.
The cleanupSignatureOrder
is idempotent. If you are ever in a situation where you are uncertain about whether the clean-up mutation succeed, it is better to try it again than not doing anything.
# Query
mutation examplesCloseSignatureOrder(
$input: CloseSignatureOrderInput!
) {
closeSignatureOrder(input: $input) {
signatureOrder {
id
documents {
id
blob
}
signatories {
status
}
}
}
}
# Variables
{
"input": {
"signatureOrderId": "[signatureOrder.id]"
},
"retainDocumentsForDays": 1
}