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 applicants
        • GETGet an applicant by ID
        • POSTCreate Applicant: Buildium
        • PUTUpdate Applicant: Buildium
    • CRM APIs
    • Download OpenAPI Spec
Dashboard
LogoLogo
BuildiumApplicants

Update Applicant: Buildium

PUT
/v1/applicants/buildium/:id
PUT
/v1/applicants/buildium/:id
$curl -X PUT https://api.propexo.com/v1/applicants/buildium/id \
> -H "Authorization: Bearer <token>" \
> -H "Content-Type: application/json" \
> -d '{}'
1{
2 "meta": {
3 "job_id": "job_9f8b7c6d5e4a3b2c1d0e"
4 },
5 "result": {
6 "id": "applicant_1234567890abcdef",
7 "last_name": "Johnson",
8 "first_name": "Emily",
9 "unit_id": "unit_9876543210fedcba",
10 "email_1": "emily.johnson@example.com",
11 "phone_1": "+14155552671",
12 "phone_1_type": "MOBILE",
13 "phone_2": "+14155552672",
14 "phone_2_type": "WORK"
15 }
16}
Update Applicant: Buildium | Interface | Method | |---|---| | Applicants | PUT /applicants/:applicantId |
Was this page helpful?
Previous

Get all applications

Next
Built with

Update Applicant: Buildium

InterfaceMethod
ApplicantsPUT /applicants/:applicantId

Authentication

AuthorizationBearer

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

Path parameters

idstringRequired
The Propexo unique identifier for the applicant

Request

This endpoint expects an object.
last_namestringOptional
The last name associated with the applicant
first_namestringOptional
The first name associated with the applicant
unit_idstringOptional
The Propexo unique identifier for the unit
email_1stringOptionalformat: "email"
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:

Response

Successful response
metaobject
resultobject

Errors

400
Bad Request Error