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 categories
        • GETGet service request category by ID
        • POSTCreate Service Request: ResMan
        • PUTUpdate Service Request: ResMan
        • POSTCreate Service Request History: ResMan - Not Supported
        • POSTCreate Service Request Files: ResMan
    • CRM APIs
    • Download OpenAPI Spec
Dashboard
LogoLogo
ResManService Requests

Update Service Request: ResMan

PUT
/v1/service-requests/resman/:service_request_id
PUT
/v1/service-requests/resman/:service_request_id
$curl -X PUT https://api.propexo.com/v1/service-requests/resman/service_request_id \
> -H "Authorization: Bearer <token>" \
> -H "Content-Type: application/json" \
> -d '{}'
1{
2 "meta": {
3 "job_id": "a1b2c3d4-e5f6-7890-ab12-cd34ef567890"
4 },
5 "result": {
6 "service_request_id": "sr-9876543210",
7 "service_request_category_id": "cat-1234567890",
8 "unit_id": "unit-4567891230",
9 "date_created": "2024-01-15T09:30:00Z",
10 "service_description": "Leaking faucet in kitchen needs repair",
11 "reported_by": "John Doe",
12 "date_due": "2024-01-22T17:00:00Z",
13 "status_raw": "Submitted",
14 "date_completed": "2024-01-15T09:30:00Z"
15 }
16}
Update Service Request: ResMan | Interface | Method | |---|---| | Work Orders | /WorkOrders/PostWorkOrders |
Was this page helpful?
Previous

Create Service Request History: ResMan - Not Supported

Next
Built with

Update Service Request: ResMan

InterfaceMethod
Work Orders/WorkOrders/PostWorkOrders

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.
service_request_category_idstringOptional
The Propexo unique identifier for the service request category
unit_idstringOptional
The Propexo unique identifier for the unit
date_createdstringOptionalformat: "date-time"
The date the service request was created
service_descriptionstringOptional
A description of the service request
reported_bystringOptional
The name of the person who reported this service request
date_duestringOptionalformat: "date-time"
The due date associated with the service request
status_rawenumOptional
The status associated with the service request
date_completedstringOptionalformat: "date-time"
The date the service request was completed

Response

Successful response
metaobject
resultobject

Errors

400
Bad Request Error