This operation allows to download one or more attachments associated with any of the products (EviMail, EviSign, EviNotice).
In this service, the field UniqueIds to be reported will be a list with the unique identifiers (uniqueId) of the attachments to download.
Code Block | ||
---|---|---|
| ||
POST https://app.ecertia.com/api/AttachmentDownload HTTP/1.1 Content-Type: application/json Accept: application/json Authorization: basic XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX== Host: app.ecertia.com { "uniqueIds":["cf00c00b-750f-4956-be1e-ac79010fa0ab"] } |
The result of this operation will deliver the following items:
- UniqueId: Unique identifier allocated to the attachment.
- CreationDate: Creation time/date of attachment.
- EvidenceUniqueId: Identifier of evidence.
- ContentId: Information on mime type of attachment.
- DisplayName: Name of the attachment.
- Filename: Name of the file. 255-character alphanumeric string.
- mimeType: Header indicating the type of media that represents the content of the attachment, it consists of a type: type and a subtype: subtype.
- contentDisposition: Disposition of bytes.
- contentEncoding: Encoding of bytes.
- contentLength: It shows the encoding of attachment.
- Hash: Algorithm used to create the hash.
- Data: Content of attachment in Base64.
- TotalMatches: Number of logs (total) matching the query.
...