Create Tenant Insurance Invitation
Create an insurance invitation link for a tenant. The tenant will be able to share insurance details, such as policy ID and insurance period, with the inviter.
Request body
referenceId
stringRequiredUnique ID in the client system.
insuranceStartDate
stringRequiredInsurance start date.
tenant
objectOptionalTenant's details.
name
stringOptionalTenant's name.
surname
stringOptionalTenant's surname.
peselNumber
stringOptionalTenant's PESEL number.
citizenship
stringOptionalTenant's citizenship.
birthDate
stringOptionalTenant's birth date.
address
objectOptionalTenant's address.
city
stringOptionalTenant's city.
street
stringOptionalTenant's street.
houseNumber
stringOptionalTenant's house number.
flatNumber
stringOptionalTenant's flat number.
postalCode
stringOptionalTenant's postal code.
email
stringOptionalEmail address to send an email with a insurance link.
language
stringOptionalLanguage used as initial in the process (pl|en|ua).
callbackUrl
stringOptionalCallback URL for process updates (see tenant insurance invitation status object).
Returns
invitationUrl
stringURL to the insurance invitation.
curl --location --request POST 'https://api-test.simpl.rent/v2/tenant-insurance-invitations/' \
--header 'Authorization: <API key>' \
--header 'Content-Type: application/json' \
--data-raw '{
"tenant": {
"name": "Simpl",
"surname": "Rent",
"peselNumber": "55082282655",
"citizenship": "PL",
"birthDate": "1955-08-22",
"address": {
"city": "Warsaw",
"street": "Kurza",
"houseNumber": "34",
"flatNumber": "3",
"postCode": "02-832"
}
},
"insuranceStartDate": "2022-01-20",
"referenceId": "1234",
"callbackUrl": "https://simpl.rent"
}'
Get Tenant Insurance Invitation
Fetch insurance invitation data.
Get tenant insurance invitation data.
Path parameters
id
stringUnique ID (referenceId) provided during tenant insurance invitation creation.
Returns
curl --location --request GET 'https://api-test.simpl.rent/v2/tenant-insurance-invitations/123' \
--header 'Authorization: <API key>'
Cancel Tenant Insurance Invitation
Cancel the tenant insurance invitation.
Path parameters
id
stringUnique ID (referenceId) provided during tenant insurance invitation creation.
curl --location --request DELETE 'https://api-test.simpl.rent/v2/tenant-insurance-invitations/12345' \
--header 'Authorization: <API key>'
Resend Tenant Insurance Invitation
Resend the tenant insurance invitation.
Path parameters
id
stringUnique ID (referenceId) provided during tenant insurance invitation creation.
Request body
email
stringRecipient email address.
curl --location --request POST 'https://api-test.simpl.rent/v2/tenant-insurance-invitations/12345/resend' \
--header 'Authorization: <API key>
--data-raw '{
"email":"test@test.com",
}'
Tenant Insurance Invitation Status Object
Callback object for insurance invitation process updates.
referenceId
stringUnique ID in the client system.
invitationState
stringInvitation state (NEW|INSURED|REJECTED|DELETED).
tenant
objectTenant's details.
name
stringTenant's name.
surname
stringTenant's surname.
policyId
stringTenant's policy ID.
insuranceStartDate
stringTenant's insurance start date (YYYY-MM-dd).
insuranceEndDate
stringTenant's insurance end date (YYYY-MM-dd).
Create Landlord Insurance Invitation
Create an invitation for landlord insurance. The landlord will be able to purchase landlord insurance with a discount for the provided tenant certificate and share insurance details with the inviter.
Request body
referenceId
stringRequiredUnique ID in the client system.
certificateId
stringOptionalWhen provided, the landlord will be able to purchase insurance with a tenant certificate discount.
email
stringOptionalIf provided, an email with a insurance link will be sent to the landlord
callbackUrl
stringOptionalCallback URL for process updates (see landlord insurance invitation status object).
Returns
invitationUrl
stringURL to the insurance invitation.
curl --location --request POST 'https://api-test.simpl.rent/v2/landlord-insurance-invitations/' \
--header 'Authorization: <API key>' \
--header 'Content-Type: application/json' \
--data-raw '{
"referenceId":"12345",
"callbackUrl":"https://simpl.rent",
"certificateId": "r9kx"
}
'
Get Landlord Insurance Invitation
Fetch insurance invitation data.
Path parameters
id
stringUnique ID (referenceId) provided during landlord insurance invitation creation.
Returns
curl --location --request GET 'https://api-test.simpl.rent/v2/landlord-insurance-invitations/123' \
--header 'Authorization: <API key>'
Cancel Landlord Insurance Invitation
Cancel the landlord insurance invitation.
Path parameters
id
stringUnique ID (referenceId) provided during landlord insurance invitation creation.
curl --location --request DELETE 'https://api-test.simpl.rent/v2/landlord-insurance-invitations/12345' \
--header 'Authorization: <API key>'ż
Resend Landlord Insurance Invitation
Resend the landlord insurance invitation.
Path parameters
id
stringUnique ID (referenceId) provided during landlord insurance invitation creation.
Request body
email
stringRecipient email address.
curl --location --request DELETE 'https://api-test.simpl.rent/v2/landlord-insurance-invitations/12345/resend' \
--header 'Authorization: <API key>'
Landlord Insurance Invitation Status Object
Landlord insurance invitation data.
referenceId
stringUnique ID in the client system.
invitationState
stringInvitation state (NEW|INSURED|REJECTED|DELETED).
landlord
object or undefinedLandlord details (visible only if the landlord accepts to share data)
name
stringLandlord's name.
surname
stringLandlord's surname.
insurance
object or undefinedLandlord insurance details (visible only if the landlord accepts to share data)
policyId
stringInsurance policy ID.
startDate
stringInsurance start date (YYYY-MM-dd).
endDate
stringInsurance end date (YYYY-MM-dd).