Learn about the /reports
endpoint.
Report objects contains information related to the various reports generated for users, which includes Verification of Income and Employment (VOIE) reports. The reports are generated on request based on the data received from payroll platforms.
Attributes
Attribute | Type | Description |
---|---|---|
id | string | Unique ID of the report object. |
user | string uuid | A unique ID assigned to a user. |
reference_id | string uuid | Unique ID of the report referenced on the PDF used as a single reference point. |
generated_at | string | Shows the date and time when the report was generated. |
type | string | Type of report. There is currently only one value available for this field:
|
status | string | The status of the report generation process. Possible values:
|
file_url | string | The |
metadata.purpose | JSON object | Other report metadata. For |
metadata.email | JSON object | Defines the email address to which a generated report will be sent. |
Endpoints
Endpoints |
---|
Generate a report - |
Retrieve a report - |
List reports - |
Example object
{
"id":"9f82994c-774d-11eb-b1c7-13e87316bacb",
"reference_id":"VOIE12357",
"generated_at":"2020-11-29T08:33:41.525392Z",
"type":"voie",
"user":"8a5f613a-673a-4434-aeee-1a38b960b936",
"status":"generated",
"file_url":"www.company.com/voie_report.pdf",
"metadata":{
"purpose":"Risk Assesment",
"email":"[email protected]"
}
}