For AI agents: a documentation index is available at the root level at /llms.txt and /llms-full.txt. Append /llms.txt to any URL for a page-level index, or .md for the markdown version of any page.
Dashboard
How It WorksKnowledge BaseOnboardingVideo TutorialsPMS GuidanceAPI ReferenceRelease Notes
    • Overview
    • PMS Generic APIs
    • CRM Generic APIs
    • PMS APIs
        • GETGet all leases
        • GETGet a lease by ID
        • POSTCreate Lease: ResMan - Not Supported
        • PUTUpdate Lease: ResMan
        • POSTCreate Lease file: ResMan - Not Supported
    • CRM APIs
    • Download OpenAPI Spec
Dashboard
LogoLogo
ResManLeases

Update Lease: ResMan

PUT
/v1/leases/resman/:lease_id
PUT
/v1/leases/resman/:lease_id
$curl -X PUT https://api.propexo.com/v1/leases/resman/lease_id \
> -H "Authorization: Bearer <token>" \
> -H "Content-Type: application/json" \
> -d '{
> "applicant_id": "applicant-12345",
> "application_date": "2024-04-10T14:00:00Z",
> "start_date": "2024-05-01",
> "end_date": "2025-04-30",
> "status": "APPROVED"
>}'
1{
2 "meta": {
3 "job_id": "job-67890"
4 },
5 "result": {
6 "lease_id": "lease-98765",
7 "applicant_id": "applicant-12345",
8 "application_date": "2024-04-10T14:00:00Z",
9 "start_date": "2024-05-01",
10 "end_date": "2025-04-30",
11 "status": "APPROVED",
12 "first_name": "Emily",
13 "last_name": "Johnson",
14 "date_of_birth": "1990-07-15",
15 "address_1": "123 Maple Street",
16 "city": "Springfield",
17 "state": "IL",
18 "zip": "62704",
19 "phone_1": "217-555-1234",
20 "phone_1_type": "MOBILE",
21 "phone_2": "217-555-5678",
22 "phone_2_type": "HOME",
23 "rent_amount_market_in_cents": 125000,
24 "move_in_date": "2024-05-01"
25 }
26}
Update Lease: ResMan | Interface | Method | |---|---| | Lease Application | /MITS/PostLeaseApplication3_0 |
Was this page helpful?
Previous

Create Lease file: ResMan - Not Supported

Next
Built with

Update Lease: ResMan

InterfaceMethod
Lease Application/MITS/PostLeaseApplication3_0

Authentication

AuthorizationBearer

Bearer authentication of the form Bearer <token>, where token is your auth token.

Path parameters

lease_idstringRequired
The Propexo unique identifier for the lease

Request

This endpoint expects an object.
applicant_idstringRequired
The Propexo unique identifier for the applicant
application_datestringRequired
The application date associated with the applicant
start_datestringRequired
The start date associated with the applicant
end_datestringRequired
The end date associated with the applicant
statusenumRequired
The status associated with the applicant
Allowed values:
first_namestringOptional
The first name associated with the applicant
last_namestringOptional
The last name associated with the applicant
date_of_birthstringOptional
The date of birth associated with the applicant
address_1stringOptional
The first address line associated with the applicant
citystringOptional
The city associated with the applicant
statestringOptional
The state associated with the applicant
zipstringOptional
The zip code associated with the applicant
phone_1stringOptional
Primary phone number associated with the applicant
phone_1_typeenumOptional
Type of the primary phone number
Allowed values:
phone_2stringOptional
Secondary phone number associated with the applicant
phone_2_typeenumOptional
Type of the secondary phone number
Allowed values:
rent_amount_market_in_centsintegerOptional
The market rent amount in cents for the lease
move_in_datestringOptional

The move-in date associated with the lease

Response

Successful response
metaobject
resultobject

Errors

400
Bad Request Error