GET api/SmartRegistry/Reports/Batch/{eRegistryBatchId}/Download

Download a CSV file of an eRegistry Batch request's results.

Request Information

URI Parameters

NameDescriptionTypeAdditional information
eRegistryBatchId

The eRegistry batch identifier.

integer

Required

Body Parameters

None.

Response Information

Resource Description

The CSV file of an eRegistry batch request's results.

ESignSystems.SmartSAFE.Models.Shared.FileDownloadModel
NameDescriptionTypeAdditional information
File

Gets or sets the file to be downloaded.

Collection of byte

None.

FileName

Gets or sets the name of the file to be downloaded.

string

None.

MimeType

Gets or sets the mime type of the file to be downloaded.

string

None.

Response Formats

application/json, text/json

Sample:
{
  "File": "QEA=",
  "FileName": "sample string 1",
  "MimeType": "sample string 2"
}

application/xml, text/xml

Sample:
<FileDownloadModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/ESignSystems.SmartSAFE.Models.Shared">
  <File>QEA=</File>
  <FileName>sample string 1</FileName>
  <MimeType>sample string 2</MimeType>
</FileDownloadModel>