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 applications
        • GETGet an application by ID
        • POSTCreate Application: ResMan
        • PUTUpdate Application: ResMan
    • CRM APIs
    • Download OpenAPI Spec
Dashboard
LogoLogo
ResManApplications

Update Application: ResMan

PUT
/v1/applications/resman/:application_id
PUT
/v1/applications/resman/:application_id
$curl -X PUT https://api.propexo.com/v1/applications/resman/application_id \
> -H "Authorization: Bearer <token>" \
> -H "Content-Type: application/json" \
> -d '{
> "applicant_id": "applicant-12345",
> "unit_id": "unit-67890",
> "lead_source_id": "leadsource-54321",
> "employee_id": "employee-98765",
> "application_date": "2024-01-15T09:30:00Z",
> "start_date": "2024-02-01",
> "end_date": "2025-01-31",
> "status": "PENDING",
> "first_name": "John",
> "last_name": "Doe"
>}'
1{
2 "meta": {
3 "job_id": "job-abc123xyz"
4 },
5 "result": {
6 "application_id": "application-112233",
7 "applicant_id": "applicant-12345",
8 "unit_id": "unit-67890",
9 "lead_source_id": "leadsource-54321",
10 "employee_id": "employee-98765",
11 "application_date": "2024-01-15T09:30:00Z",
12 "start_date": "2024-02-01",
13 "end_date": "2025-01-31",
14 "status": "PENDING",
15 "first_name": "John",
16 "last_name": "Doe",
17 "email_1": "john.doe@example.com",
18 "phone_1": "+1-555-123-4567",
19 "phone_1_type": "MOBILE",
20 "phone_2": "+1-555-765-4321",
21 "phone_2_type": "HOME",
22 "date_of_birth": "1990-06-15",
23 "address_1": "123 Maple Street",
24 "address_2": "Apt 4B",
25 "city": "Springfield",
26 "state": "IL",
27 "zip": "62704",
28 "notes": "Applicant prefers a unit with a balcony.",
29 "move_in_date": "2024-02-01",
30 "rent_amount_in_cents": 120000,
31 "desired_lease_term_in_months": 12,
32 "floor_plan_id": "floorplan-556677",
33 "other_occupants": [
34 {
35 "first_name": "Jane",
36 "last_name": "Doe",
37 "email_1": "jane.doe@example.com",
38 "phone_1": "+1-555-234-5678",
39 "phone_1_type": "MOBILE",
40 "phone_2": "+1-555-876-5432",
41 "phone_2_type": "WORK",
42 "address_1": "123 Maple Street",
43 "address_2": "Apt 4B",
44 "city": "Springfield",
45 "state": "IL",
46 "zip": "62704",
47 "date_of_birth": "1992-08-20",
48 "move_in_date": "2024-02-01",
49 "rent_amount_in_cents": 60000
50 }
51 ],
52 "emergency_contacts": [
53 {
54 "first_name": "Mary",
55 "last_name": "Smith",
56 "relationship": "Sister",
57 "address_1": "456 Oak Avenue",
58 "city": "Springfield",
59 "state": "IL",
60 "zip": "62705",
61 "country": "USA",
62 "phone_1": "+1-555-345-6789"
63 }
64 ],
65 "employment_history": [
66 {
67 "name": "Acme Corp",
68 "income_in_cents": 5500000,
69 "frequency": "MONTHLY",
70 "start_date": "2018-05-01",
71 "end_date": "2024-01-01",
72 "position": "Software Engineer",
73 "address_1": "789 Industrial Road",
74 "city": "Springfield",
75 "state": "IL",
76 "zip": "62706",
77 "country": "USA",
78 "supervisor_first_name": "Alice",
79 "supervisor_last_name": "Johnson",
80 "supervisor_phone": "+1-555-456-7890"
81 }
82 ],
83 "vehicles": [
84 {
85 "make": "Toyota",
86 "model": "Camry",
87 "color": "Blue",
88 "license_plate_number": "ABC1234",
89 "license_plate_state": "IL",
90 "permit_number": "P-987654"
91 }
92 ],
93 "pets": [
94 {
95 "type": "Dog",
96 "name": "Buddy",
97 "weight_in_pounds": 45
98 }
99 ]
100 }
101}
Update Application: ResMan. Note: When reading in the updated application we cannot filter by the application_id, so we must pull in all residents and applicants to save the newly updated application.This may result in an increase in the total number of records processed | Interface | Method | |---|---| | Lead Management | /MITS/PostLeadManagement4_0 | | Lease Application | /MITS/PostLeaseApplication3_0 |
Was this page helpful?
Previous

Get all appointments

Next
Built with

Update Application: ResMan. Note: When reading in the updated application we cannot filter by the application_id, so we must pull in all residents and applicants to save the newly updated application.This may result in an increase in the total number of records processed

InterfaceMethod
Lead Management/MITS/PostLeadManagement4_0
Lease Application/MITS/PostLeaseApplication3_0

Authentication

AuthorizationBearer

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

Path parameters

application_idstringRequired
The ID of the resource.

Request

This endpoint expects an object.
applicant_idstringRequired
The Propexo unique identifier for the applicant
unit_idstringRequired
The Propexo unique identifier for the unit
lead_source_idstringRequired
The Propexo unique identifier for the lead source
employee_idstringRequired
The Propexo unique identifier for the employee
application_datestringRequired
The application date associated with the applicant
start_datestringRequired
The start date associated with the lease
end_datestringRequired
The end date associated with the lease
statusenumRequired
The status associated with the application
Allowed values:
first_namestringRequired
The first name associated with the applicant
last_namestringRequired
The last name associated with the applicant
email_1stringOptional
The primary email address 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:
date_of_birthstringOptional
The date of birth associated with the applicant
address_1stringOptional
The first address line associated with the applicant
address_2stringOptional
The second 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
notesstringOptional
Notes associated with the applicant
move_in_datestringOptional

The move-in date associated with the applicant

rent_amount_in_centsintegerOptional>=0
The rent amount in cents for the applicant
desired_lease_term_in_monthsdoubleOptional>=0
The amount of months for the lease term
floor_plan_idstringOptional
The Propexo unique identifier for the floor plan
other_occupantslist of objectsOptional

A list of other occupants for the application. Note: Only new occupants should be passed in, existing occupants cannot be updated

emergency_contactslist of objectsOptional

A list of emergency contacts for the applicant. Note: This will only be added to the primary applicant on the application.

employment_historylist of objectsOptional

The employment history of the applicant. Note: This will only be added to the primary applicant on the application. Only entries with both income_in_cents and frequency will be included.

vehicleslist of objectsOptional
A list of vehicles for the application
petslist of objectsOptional
A list of applicant pets

Response

Successful response
metaobject
resultobject

Errors

400
Bad Request Error