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

integer

None.

FileName

string

None.

FileContentBase64

string

None.

ContentType

string

None.

FileSizeBytes

integer

None.

Description

string

None.

LossPayeeCount

integer

None.

SupplementCount

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>