Create Verification
Create a verification process.
Create a verification process.
Request body
type
stringRequiredVerification type (FULL_CHECK | IDENTITY_CREDIT_CHECK | IDENTITY_CHECK).
language
stringOptionalDefaults to plLanguage used for communication with tenants (pl|en|ua).
numberOfTenants
numberOptionalDefaults to 1Number of tenant verifications with a joint affordability check to be performed within the created process.
tenants
arrayOptionalIf provided, an email with a verification link will be issued to each tenant.
email
stringRequiredTenant's email.
property
objectRequiredObject containing details of the rented property.
rent
numberOptionalRent amount with all fees included to compare with tenant's salary (required if type == FULL_CHECK) .
city
stringRequiredCity where the property is located.
street
stringRequiredStreet where the property is located.
postalCode
stringRequiredPolish post code in format 00-000.
houseNumber
stringRequiredHouse number of the property.
flatNumber
stringOptionalFlat number of the property.
contactPerson
objectOptionalEmail of person responsible for the tenant (for customer support purposes).
referenceId
stringRequiredUnique ID of the verification process in the client system.
callbackUrl
stringOptionalCallback URL for process updates (see callback return object).
curl --location --request POST 'https://api-test.simpl.rent/v2/verifications' \
--header 'Authorization: <API key>' \
--header 'Content-Type: application/json' \
--data-raw '{
"type": "FULL_CHECK",
"language": "pl",
"numberOfTenants": 1,
"tenants": [
{
"email": "test@simpl.rent"
}
],
"property": {
"rent": 1000,
"city": "krakow",
"street": "ul. Dluga",
"houseNumber": "1",
"flatNumber": "1",
"postalCode": "00-000"
},
"contactPerson": {
"name": "Marcin",
"email": "Nowak",
"phone": "500 400 100"
},
"referenceId": "123",
"callbackUrl": "https://simpl.rent"
}'
Get Verification
Fetch verification process data.
Path parameters
id
stringID (referenceId) provided when creating the verification.
Returns
referenceId
stringID (referenceId) provided when creating the verification.
tenants
arrayArray of current verification states for each tenant in the process.
id
stringTenant's ID.
certificateId
stringID used to fetch the Tenant Certificate.
email
stringTenant's email.
name
stringTenant's name.
surname
stringTenant's surname.
identityCheck
stringIdentity check status (NOT_STARTED|PENDING|PASSED|FAILED).
affordabilityCheck
stringAffordability check status (NOT_STARTED|SUBMITTED|PENDING|PASSED|FAILED).
creditCheck
stringCredit check status (NOT_STARTED|SUBMITTED|PASSED|FAILED).
sanctionsCheck
string or undefinedSanctions check status (NOT_STARTED|SUBMITTED|PASSED|FAILED). Require additional configuration - contact info@simpl.rent for more info
finalStatus
stringFinal status (NOT_STARTED|PENDING|PASSED|FAILED).
To obtain verification state explanations, use certificateId
to download Tenant Certificate.
curl --location --request GET 'https://api-test.simpl.rent/v2/verifications/123' \
--header 'Authorization: <API key>'
Cancel Verification
Cancel the verification process. The verification is cancelable only if the tenant has not performed any checks yet.
Path parameters
id
stringID (referenceId) provided when creating the verification.
curl --location --request DELETE 'https://api-test.simpl.rent/v2/verifications/123' \
--header 'Authorization: <API key>'
Get Tenant Certificate
Fetch the Tenant Certificate PDF file.
Path parameters
id
stringID (certificateId) from tenant verification data.
Query parameters
lang
stringOptionalDefaults to plLanguage of the certificate. Available options are 'en', 'pl', 'ua'. If not provided, the default language is 'pl'.
Returns
pdf
Content-Type: application/pdfPDF file containing the tenant certificate.
curl --location --request GET 'https://api-test.simpl.rent/v2/certificates/zved?lang=pl' \
--header 'Authorization: <API key>' --output certificate.pdf
Send Verification Invitation/Reminder
Send verification process invitation/reminder to a tenant (same email as on create verification action).
Request body
tenant
objectTenant's email.
email
stringTenant's email.
curl --location --request POST '/v2/verifications/123/invite' \
--header 'Authorization: <API key>' \
--header 'Content-Type: application/json' \
--data-raw '{
"tenant": {
"email": "test@simpl.rent"
}
}'
Callback Return Object
Callback return object.
referenceId
stringUnique ID of the verification process in the client system.
verificationStatus
string or nullVerification status (CANCELED).
tenants
array or nullArray of tenants.
certificateId
stringCertificate ID.
email
stringTenant's email.
name
stringTenant's name.
surname
stringTenant's surname.
identityCheck
stringIdentity check status.
affordabilityCheck
stringAffordability check status.
creditCheck
stringCredit check status.
sanctionsCheck
string or nullSanctions check status.
finalStatus
stringFinal status.