Skip to main content

Analyze a Rental file

Analyze a rental file

Create a new RentalFile object

info

A note about the meta field

The meta field allow you to include external information about this rental file.

You can use it to store:

  • information like unique identifier to link a rental file to your internal system
  • information like user inputs in your system that can be relevant in the analysis process

To interact with the API directly see the Create rental file section

You can use the following examples directly

{
"applicants_situation": "SINGLE",
"meta": {
"my_system_id": "FR123"
},
"applicants": [
{
"first_name": "Jean",
"last_name": "Dupond",
"meta": {
"my_system_id": "A123"
}
}
]
}

Uploads applicant's documents

In order to analyze a document, our system has to know how to process information about it. This is done by precising the "document_type".

🎟️ Generate Bearer Token

Retrieve the results

The prefered method is using webhooks, in the developper settings you can enable webhooks.