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 events
        • GETGet an event by ID
        • GETGet all event types
        • GETGet event type by ID
        • POSTCreate Applicant Event: Realpage
        • POSTCreate Lead Event: Realpage
        • POSTCreate Resident Event: Realpage
    • CRM APIs
    • Download OpenAPI Spec
Dashboard
LogoLogo
RealPage Registered VendorEvents

Create Resident Event: Realpage

POST
/v1/events/residents/realpage/
POST
/v1/events/residents/realpage/
$curl -X POST https://api.propexo.com/v1/events/residents/realpage/ \
> -H "Authorization: Bearer <token>" \
> -H "Content-Type: application/json" \
> -d '{
> "integration_id": "intg-9f8b7c6d5e4a3b2c1d0e",
> "resident_id": "res-1234567890abcdef",
> "event_type_id": "evt-20240427-01",
> "notes": "Resident reported a maintenance issue with the heating system."
>}'
1{
2 "meta": {
3 "job_id": "job-20240427-7890abcd1234ef56"
4 },
5 "result": {
6 "integration_id": "intg-9f8b7c6d5e4a3b2c1d0e",
7 "resident_id": "res-1234567890abcdef",
8 "event_type_id": "evt-20240427-01",
9 "notes": "Resident reported a maintenance issue with the heating system."
10 }
11}
Create Resident Event: Realpage | Interface | Method | |---|---| | Resident Service ODE | AddResidentActivityLog | <Note title="Notice">Due to PMS limitations, the ID of the created record cannot be retrieved. This will be found on the next data sync.</Note>
Was this page helpful?
Previous

Get all leads

Next
Built with

Create Resident Event: Realpage

InterfaceMethod
Resident Service ODEAddResidentActivityLog
Notice
Due to PMS limitations, the ID of the created record cannot be retrieved. This will be found on the next data sync.

Authentication

AuthorizationBearer

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

Request

This endpoint expects an object.
integration_idstringRequired
The Propexo unique identifier for the integration
resident_idstringRequired
The Propexo unique identifier for the resident
event_type_idstringRequired
The Propexo unique identifier for the event type
notesstringRequired
Notes associated with the event

Response

Successful response
metaobject
resultobject

Errors

400
Bad Request Error