Write Requests in Propexo
Overview
Property Management Systems (PMS) serve as the source of truth for all data.
When you need to create or update records, Propexo provides a streamlined way to write data back to these systems through generic endpoints that work across all supported platforms.
How Propexo Handles This
Write requests require careful handling to ensure data integrity and compatibility across different PMS platforms, as each system has its own requirements and restrictions.
Checking Write Request Status
After submitting a write request, you’ll receive a job_id in the response. Since write operations are processed asynchronously, you can check the status using our write operation status endpoint:
GET /v1/admin/write-status/:root_job_id
This endpoint returns whether the operation was successful, any errors encountered, and the IDs of records created. We recommend polling this endpoint after write operations to confirm data was written as expected.
Important: Read the Full Documentation
Before implementing write requests, please read our complete documentation. It contains critical information about:
- Generic endpoint functionality and validation
- PMS-specific requirements and restrictions
- Error handling and troubleshooting
- Best practices for different use cases

