Download Documents
You can download documents associated with a HELOC application using the endpoints described below. These endpoints allow you to retrieve all documents for an application or a specific document by its unique identifier.
note
You must have a valid appUuid for the application whose documents you wish to download. Authentication must be included in your requests.
List All Documents (Fetch Document Metadata)
Retrieve a list of all documents and their metadata for a given application. This endpoint returns document UUIDs, filenames, types, and content types, which can be used to download individual documents.
Request:
URL
GET https://api.figure.com/products/heloc/v1/document/{appUuid}/list
Path Parameters:
appUuid(string, required): The unique identifier for the application.
Response:
- 200 OK: Returns a JSON object containing an array of document metadata objects:
Response Example
{
"documents": [
{
"documentUuid": "abcdef12-3456-7890-abcd-ef1234567890",
"fileName": "signed-agreement.pdf",
"docType": "SIGNED_AGREEMENT",
"contentType": "application/pdf"
},
{
"documentUuid": "12345678-90ab-cdef-1234-567890abcdef",
"fileName": "disclosures.zip",
"docType": "DISCLOSURES",
"contentType": "application/zip"
}
]
}
Download a Specific Document
Download a single document for a given application by its document UUID.
Request:
URL
GET https://api.figure.com/products/heloc/v1/document/{appUuid}/download/{documentUuid}
Path Parameters:
appUuid(string, required): The unique identifier for the application.documentUuid(string, required): The unique identifier for the document.
Response:
- 200 OK: Returns a binary file (PDF or other format) for the requested document.
Download All Documents
Download a zip file containing all documents for a given application.
Request:
URL
GET https://api.figure.com/products/heloc/v1/document/{appUuid}/download
Path Parameters:
appUuid(string, required): The unique identifier for the application.
Response:
- 200 OK: Returns a binary file (zip) containing all documents for the application.