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

Create Service Request History: Propertyware

POST
/v1/service-request-history/propertyware/
POST
/v1/service-request-history/propertyware/
$curl -X POST https://api.propexo.com/v1/service-request-history/propertyware/ \
> -H "Authorization: Bearer <token>" \
> -H "Content-Type: application/json" \
> -d '{
> "integration_id": "intg-9f8b7c6d5e4a3b2c1d0e",
> "service_request_id": "sr-20240615-00123",
> "notes": "Technician attached a note regarding the HVAC system inspection and recommended filter replacement.",
> "title": "HVAC Inspection Note"
>}'
1{
2 "meta": {
3 "job_id": "job-20240615-789xyz"
4 },
5 "result": {
6 "integration_id": "intg-9f8b7c6d5e4a3b2c1d0e",
7 "service_request_id": "sr-20240615-00123",
8 "notes": "Technician attached a note regarding the HVAC system inspection and recommended filter replacement.",
9 "title": "HVAC Inspection Note"
10 }
11}
Create Service Request History: Propertyware | Method | |---| | attachNoteToWorkOrder | <Note title="Notice">Due to PMS limitations, the ID of the created record cannot be retrieved. This will be found on the next data sync.</Note>
Was this page helpful?
Previous

Create Service Request File: Propertyware

Next
Built with

Create Service Request History: Propertyware

Method
attachNoteToWorkOrder
Notice
Due to PMS limitations, the ID of the created record cannot be retrieved. This will be found on the next data sync.

Authentication

AuthorizationBearer

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

Request

This endpoint expects an object.
integration_idstringRequired
The Propexo unique identifier for the integration
service_request_idstringRequired
The Propexo unique identifier for the service request
notesstringRequired
Notes associated with the service request history
titlestringRequired
The title associated with the service request history

Response

Successful response
metaobject
resultobject

Errors

400
Bad Request Error