Edit a Work Order

Purpose

To update a work order record.

Request URL

https://fsm.zoho.com/fsm/v1/Work_Orders/<record_id>

record_id - The unique ID of the record.

Request Method

PUT

Scope

scope=ZohoFSM.modules.WorkOrders.UPDATE

Sample Request

Copiedcurl --request PUT \
'https://fsm.zoho.com/fsm/v1/Work_Orders/4476553000000109157' \
--header 'Authorization: Zoho-oauthtoken 1000.2xxxxxxx.exxx' \
-d "@updateWO.json"

Sample Input

Copied{
    "data": [
      {
        "Summary": "AC to be installed in the bedroom"
      }
    ]
  }

Sample Response

Copied{
    "data": [
        {
            "code": "SUCCESS",
            "details": {
                "Modified_Time": "2021-11-02T13:36:46-07:00",
                "Modified_By": {
                    "name": "Tracy Pollan",
                    "id": "865000000070001"
                },
                "Created_Time": "2021-09-20T04:41:16-07:00",
                "id": "865000000079093",
                "Created_By": {
                    "name": "Tracy Pollan",
                    "id": "865000000070001"
                }
            },
            "message": "record updated",
            "status": "success"
        }
    ]
}