Add timestamp

Seal attesting to the exact date and time when a document was created and/or received digital signature, creating evidence of its temporal existence while simultaneously ensuring legal validity.

You can create a timestamp for your document using:

Create document via Upload

POST https://api.zapsign.com.br/api/v1/timestamp/

This endpoint allows you to add a timestamp to a document from a PDF or DOCX. You will need to send the data in JSON format, and you will also receive it in the same format.

Headers

NameTypeDescription

Authorization*

string

apiToken ahead of the "Bearer" text.

Ex: Bearer c7f35c84-7893-4087-b4fb-d1f06c23

Request Body

NameTypeDescription

url

string

Define the PDF or DOCX to be signed from a public URL with the file. For now, we only accept one file, up to 10Mb.

base64

string

Alternative to url: Set the PDF or DOCX to be signed, starting from a base64. You must convert the file to a base64 string and send it to us in this parameter (more details below).

{
    "url": "https://zapsign.s3.amazonaws.com/pdf/62c2b027-d8fc-4392-xas75-f3c46c3cfc7a/d33336-4182-8c8b-ded5287e4c0f.pdf"
}

Last updated