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: Propertyware
        • POSTCreate Service Request: Propertyware
        • POSTCreate Service Request History: Propertyware
        • POSTCreate Service Request File: Propertyware
    • CRM APIs
    • Download OpenAPI Spec
Dashboard
LogoLogo
Propertyware SOAPService Requests

Update Service Request: Propertyware

PUT
/v1/service-requests/propertyware/:service_request_id
PUT
/v1/service-requests/propertyware/:service_request_id
$curl -X PUT https://api.propexo.com/v1/service-requests/propertyware/service_request_id \
> -H "Authorization: Bearer <token>" \
> -H "Content-Type: application/json" \
> -d '{}'
1{
2 "meta": {
3 "job_id": "job_9f8b7c6d5e4a3b2c1d0e"
4 },
5 "result": {
6 "service_request_id": "sr_1234567890abcdef",
7 "unit_id": "unit_9876543210fedcba",
8 "vendor_id": "vendor_abc123xyz789",
9 "lease_id": "lease_456def789abc012",
10 "access_is_authorized": true,
11 "service_description": "Air conditioning unit repair",
12 "service_category": "HVAC",
13 "date_completed": "2024-01-15T09:30:00Z",
14 "date_created": "2024-01-10T08:00:00Z",
15 "service_details": "Technician replaced the faulty compressor and tested the system.",
16 "date_due": "2024-01-20T17:00:00Z",
17 "date_scheduled": "2024-01-18T14:00:00Z",
18 "status_raw": "Completed"
19 }
20}
Update Service Request: Propertyware | Method | |---| | updateWorkOrder |
Was this page helpful?
Previous

Create Service Request: Propertyware

Next
Built with

Update Service Request: Propertyware

Method
updateWorkOrder

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.
unit_idstringOptional
The Propexo unique identifier for the unit
vendor_idstringOptional
The Propexo unique identifier for the vendor
lease_idstringOptional
The Propexo unique identifier for the lease
access_is_authorizedbooleanOptional
Whether or not the tenant has granted permission to enter the unit associated with the service request
service_descriptionstringOptional
A description of the service request
service_categorystringOptional
The category of service request
date_completedstringOptionalformat: "date-time"
The date the service request was completed
date_createdstringOptionalformat: "date-time"
The date the service request was created
service_detailsstringOptional
Details about the service request
date_duestringOptionalformat: "date-time"
The due date associated with the service request
date_scheduledstringOptionalformat: "date-time"
The date the service request is scheduled
status_rawstringOptional
The status associated with the service request

Response

Successful response
metaobject
resultobject

Errors

400
Bad Request Error