Edit a Service Report

Purpose

To update a service report.

Request URL

https://fsm.zoho.com/fsm/v1/Service_Reports

Request Method

PUT

Scope

scope=ZohoFSM.modules.ServiceReports.UPDATE

NameDescriptionTypeMandatory
idThe ID of the service report you want to update. You can obtain this ID from the List Service Reports API.StringYes

Sample Request

Copiedcurl --request PUT 'https://fsm.zoho.com/fsm/v1/Service_Reports' \
--header 'Authorization: Zoho-oauthtoken 1000.26xxxxxxxxxx.xxxxxxxxxx0' \
--header 'content-type: application/json' \
--data "{"field1":"value1","field2":"value2"}"

Sample Input

Copied{
    "data": [
        {
            "$technician_feedback": {
                "Summary": "TV wall mounting in living room"
            },
            "id": "1003000002644089"
        }
    ]
}

Sample Response

Copied{
    "data": [
        {
            "code": "SUCCESS",
            "details": {
                "Modified_Time": "2025-05-20T17:48:06+05:30",
                "Modified_By": {
                    "name": "Marianne Sheehan",
                    "id": "1003000000208001"
                },
                "Created_Time": "2025-05-20T17:23:35+05:30",
                "id": "1003000002644089",
                "Created_By": {
                    "name": "Marianne Sheehan",
                    "id": "1003000000208001"
                }
            },
            "message": "record updated",
            "status": "success"
        }
    ]
}