GET v1/ACORDForms/{acordFormID}/Download

Download an ACORD Form file by ACORD Form ID as JSON with base64-encoded PDF content

Request Information

URI Parameters

NameDescriptionTypeAdditional information
acordFormID

Id of the ACORD Form

integer

Required

Body Parameters

None.

Response Information

Resource Description

ACORD Form data with base64-encoded PDF content

AcordFormDownloadDTO
NameDescriptionTypeAdditional information
AcordFormID

The ID of the ACORD form

integer

None.

FileName

The file name of the ACORD form PDF

string

None.

FileContentBase64

The base64-encoded PDF file content

string

None.

ContentType

The MIME type of the file (typically "application/pdf")

string

None.

FileSizeBytes

The size of the file in bytes

integer

None.

Description

Description of the ACORD form

string

None.

LossPayeeCount

Number of loss payees included in the form

integer

None.

SupplementCount

Number of supplements included in the form

integer

None.

Response Formats

application/json, text/json

Sample:
{
  "AcordFormID": 1,
  "FileName": "sample string 2",
  "FileContentBase64": "sample string 3",
  "ContentType": "sample string 4",
  "FileSizeBytes": 5,
  "Description": "sample string 6",
  "LossPayeeCount": 7,
  "SupplementCount": 8
}

application/xml, text/xml

Sample:
<AcordFormDownloadDTO xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/QQSolutions.NextGen.ModelLibrary.DataTransferObjects.ACORD">
  <AcordFormID>1</AcordFormID>
  <ContentType>sample string 4</ContentType>
  <Description>sample string 6</Description>
  <FileContentBase64>sample string 3</FileContentBase64>
  <FileName>sample string 2</FileName>
  <FileSizeBytes>5</FileSizeBytes>
  <LossPayeeCount>7</LossPayeeCount>
  <SupplementCount>8</SupplementCount>
</AcordFormDownloadDTO>