Actuate Information Delivery API operations : DownloadTransientFile
 
DownloadTransientFile
Downloads transient files. The request requires a FileId and can also indicate whether to decompose a compound document. File content can be attached or embedded in the response.
Request schema
<xsd:complexType name="DownloadTransientFile">
<xsd:sequence>
<xsd:element name="FileId" type="xsd:string" />
<xsd:element name="DecomposeCompoundDocument"
type="xsd:boolean" minOccurs="0" />
</xsd:sequence>
</xsd:complexType>
Request elements
FileId
The file ID of the transient file.
DecomposeCompoundDocument
Flag indicating whether to decompose compound documents into separate attachments.
Response schema
<xsd:complexType name="DownloadTransientFileResponse">
<xsd:sequence>
<xsd:element name="FileId" type="xsd:string" />
<xsd:choice>
<xsd:element name="Content" type="typens:Attachment" />
<xsd:element name="ContainedFiles"
type="typens:ArrayOfAttachment" />
</xsd:choice>
</xsd:sequence>
</xsd:complexType>
Response elements
FileId
The file ID.
Content
An attachment containing the file content.
ContainedFiles
An array of any files contained within the transient file.