Add Signature to Multiple ASICE Containers

With this feature, you can add a signature to multiple ASICE containers at once. This feature is useful when you have multiple ASICE containers that you want to sign at the same time.

What methods support Signing Multiple ASICE Containers?

Currently ASICE batch signing is supported by some methods. This means that if you are using our signing preview page, then in the widget you can expect to see less methods than usually. The full list of supported methods can be found at supported signing methods (Check for "Supports batch signing").

How to Prepare add Signature to Multiple ASICE Containers

So, for example let's sign 2 ASICE containers at once. To do so, make request to the following endpoint: `https://id.eideasy.com/api/signatures/prepare-add-signature

With the following request:

{
  "client_id": "{{client_id}}",
  "secret": "{{secret}}",
  "files": [
    {
      "fileName": "file1.asice",
      "container": "base64 encoded ASICE file1.asice"
    },
    {
      "fileName": "file2.asice",
      "container": "base64 encoded ASICE file2.asice"
    }
  ]
}

The rest of the flow follows our typical signing flow.

Last Updated: