The report object
Attributes
-
id(string (uuid)): Unique ID of the report object.Also the “Reference #” on the report PDF. -
user(string (uuid)): ID of the user associated with the report. -
(Deprecated) reference_id(string (uuid)): Report PDF identifier. -
(Deprecated) generated_at(string (datetime)): Timestamp (ISO 8601) when the report was requested. -
created_at(string (datetime)): Timestamp (ISO 8601) when the report was requested. -
type(string (enum)): The type of report.Possible values:
-
voie— Verification of Income and Employment -
voe— Verification of Employment -
voie-mortgage— Verification of Income and Employment, integrated with Fannie Mae’s Desktop Underwriter® (DU®) validation service and Freddie Mac’s asset and income modeler (AIM). -
voe-mortgage— Verification of Employment, integrated with Fannie Mae’s Desktop Underwriter® (DU®) validation service and Freddie Mac’s asset and income modeler (AIM).
-
-
status(string (enum)): Progress of report generation.Possible values:
-
waiting_for_sync— Data from the connected payroll account is still being retrieved. The report will be generated once the user’s data is fully synced. -
generating— The report is being generated. -
generated— The report is ready to download.
-
-
file_url(string): Download link to the report PDF. This static URL redirects to a download page that requires Argyle authentication headers. See the dropdown below for more information.Implementation requirements for client-side applications:
. Ensure your HTTP client or library (e.g. Axios, Python requests, etc.) or similar tool is configured to pursue redirects. Most tools support this functionality.. Basic authentication headers for Argyle must be appended to the file download request. -
json_url(string): Download link to the report in JSON. Requires Argyle authentication headers. -
accounts(array of objects): The accounts used to generate the report.id(string (uuid)): ID of the account.item(string): ID of the Item in Link through which the account was connected.last_synced_at(string (datetime)): Timestamp (ISO 8601) when the account was last scanned for new data before the report was generated.
-
metadata(object): Any metadata for internal use added when generating the report. -
last_synced_at(string (datetime)): Timestamp (ISO 8601) when the account used to generate the report was last scanned for new data before the report was generated. If multiple accounts were used, the more recent timestamp.Used to populate the “Data as of” date on the report PDF. -
external_id(string): Theexternal_idof the user, otherwisenull.
Generate a report
POST/v2/reports
Generates a new report and returns a partial report object.
There is a daily limit of 10 reports per user to prevent excessive report generation due to accidental client-side errors.
If the daily report limit is reached, deleting a previously generated report from the same 24 hour period will allow another report to be generated.
Request body
-
user(string (uuid), required): ID of the user. -
type(note, required) -
metadata(object, optional): Information for internal use, structured as a JSON object.
- curl
- python
Retrieve a report
GET/v2/reports/{id}
Retrieves a report object.
Path parameters
id(string (uuid), required): ID of the report object to be retrieved.
- curl
- python
Retrieve a report in JSON
GET/v2/reports/{id}.json
Retrieves the content of a PDF report in JSON format.
- Report JSONs become available once the report’s status is
generated
Path parameters
Verification of Employment (VOE) Report:
- curl
- python

Delete a report
DELETE/v2/reports/{id}
Deletes a report object.
Path parameters
id(string (uuid), required): ID of the report object to be deleted.
- curl
- python
List all reports
GET/v2/reports
Returns an array of all report objects.
Query parameters
- curl
- python