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 service requests
        • GETGet a service request by ID
        • GETGet all service request history
        • GETGet service request history by ID
        • GETGet all service request priorities
        • GETGet service request priority by ID
        • GETGet all service request locations
        • GETGet a service request location by ID
        • GETGet all service request problems
        • GETGet a service request problem by ID
        • PUTUpdate Service Request: RealPage Partner Exchange
        • POSTCreate Service Request: RealPage Partner Exchange
        • POSTCreate Service Request History: RealPage Partner Exchange
    • CRM APIs
    • Download OpenAPI Spec
Dashboard
LogoLogo
RealPage App PartnerService Requests

Update Service Request: RealPage Partner Exchange

PUT
/v1/service-requests/realpage_rpx/:service_request_id
PUT
/v1/service-requests/realpage_rpx/:service_request_id
$curl -X PUT https://api.propexo.com/v1/service-requests/realpage_rpx/service_request_id \
> -H "Authorization: Bearer <token>" \
> -H "Content-Type: application/json" \
> -d '{
> "status_raw": "In Progress"
>}'
1{
2 "meta": {
3 "job_id": "job_9f8b7c6d5e4a3b2c1d0e"
4 },
5 "result": {
6 "service_request_id": "sr_1234567890abcdef",
7 "status_raw": "In Progress",
8 "completion_notes": "Technician dispatched and en route to the property.",
9 "service_details": "Air conditioning unit repair requested for apartment 4B."
10 }
11}
When updating a service request, a new service request history record will also be created. | Method | Interface | |---|---| | UpdateServiceRequest | Facilities |
Was this page helpful?
Previous

Create Service Request: RealPage Partner Exchange

Next
Built with

When updating a service request, a new service request history record will also be created.

MethodInterface
UpdateServiceRequestFacilities

Authentication

AuthorizationBearer

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

Path parameters

service_request_idstringRequired
The Propexo unique identifier for the service request

Request

This endpoint expects an object.
status_rawenumRequired
The raw status associated with the service request
Allowed values:
completion_notesstringOptional
Closing notes associated with the service request
service_detailsstringOptional
Details about the service request

Response

Successful response
metaobject
resultobject

Errors

400
Bad Request Error