Timestamping

  1. Obtain timestamping endpoint
  2. Whitelist your IP address
  3. Send data to be timestamped

NOTE

Access to the timestamping endpoint is restricted by IP address.

1. Obtain timestamping endpoint

Timestamping endpoint: https://id.eideasy.com/api/timestamp/{{client_id}}

You can follow this short guide to obtain the client_id

2. Whitelist your IP address

  1. Log in to eID Easy adminopen in new window
  2. Go to "My Webpages"
  3. Find the client_id you are using and click "EDIT"
  4. Add your IP address to the "Allowed IP addresses" field

timestamping allowed ip setting

3. Send data to be timestamped

This endpoint follows the standard timestamping protocol as defined in RFC 3161open in new window

Check our postman collection for an example of how to send data to be timestamped. You can find the request example hereopen in new window.

Or try out in terminal:

printf '%s' 'MFkCAQEwUTANBglghkgBZQMEAgMFAARAcmPuUejyGr4MjLUwLKByfE0TmSahwbhkJmOakLxeWkmw/LvXTfKQdiaJlY/KStgp6xPX+8Hhrtnojyc659BRTQEB/w==
' \
  | base64 -D \
  | curl --silent --show-error --fail --location \
      'https://id.eideasy.com/api/timestamp/{{client_id}}' \
      --header 'Content-Type: application/octet-stream' \
      --data-binary @- \
  | base64 \
  | tr -d '\n'
Last Updated: