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
        • PUTUpdate Service Request: Yardi
        • POSTCreate Service Request: Yardi
        • POSTCreate Service Request History: Yardi
        • POSTCreate Service Request File: Yardi
    • CRM APIs
    • Download OpenAPI Spec
Dashboard
LogoLogo
Yardi (Legacy)Service Requests

Update Service Request: Yardi

PUT
/v1/service-requests/yardi/:service_request_id
PUT
/v1/service-requests/yardi/:service_request_id
$curl -X PUT https://api.propexo.com/v1/service-requests/yardi/service_request_id \
> -H "Authorization: Bearer <token>" \
> -H "Content-Type: application/json" \
> -d '{
> "access_is_authorized": true,
> "service_description": "Leaky faucet repair"
>}'
1{
2 "meta": {
3 "job_id": "a1b2c3d4-e5f6-7890-ab12-cd34ef567890"
4 },
5 "result": {
6 "service_request_id": "sr-9876543210",
7 "access_is_authorized": true,
8 "service_description": "Leaky faucet repair",
9 "unit_id": "unit-12345",
10 "resident_id": "res-67890",
11 "vendor_id": "vend-54321",
12 "service_details": "The kitchen faucet is leaking and needs replacement of the washer.",
13 "date_created": "2024-01-15T09:30:00Z",
14 "service_category": "Plumbing",
15 "service_priority": "High",
16 "status_raw": "Assessment"
17 }
18}
Update Service Request: Yardi | Interface | Method | |---|---| | Service Requests | CreateOrEditServiceRequests |
Was this page helpful?
Previous

Create Service Request: Yardi

Next
Built with

Update Service Request: Yardi

InterfaceMethod
Service RequestsCreateOrEditServiceRequests

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.
access_is_authorizedbooleanRequired
Whether or not the tenant has granted permission to enter the unit associated with the service request
service_descriptionstringRequired<=35 characters
A description of the service request
unit_idstringOptional
The Propexo unique identifier for the unit
resident_idstringOptional
The Propexo unique identifier for the resident
vendor_idstringOptional
The Propexo unique identifier for the vendor
service_detailsstringOptional
Details about the service request
date_createdstringOptionalformat: "date-time"
The date the service request was created
service_categoryenumOptional
The category of service request
Allowed values:
service_priorityenumOptional
The priority level associated with the service request
Allowed values:
status_rawenumOptional
The raw status associated with the service request

Response

Successful response
metaobject
resultobject

Errors

400
Bad Request Error