Edit a Note

Purpose

To edit a particular note in a record.

Request URL

https://fsm.zoho.com/fsm/v1/<module_api_name>/<record_id>/Notes/<note_id>

module_api_name - The API name of the module in whose record you want to edit a note

record_id - The unique ID of the record.

note_id - The ID of the note you want to update

Request Method

PUT

Scope

scope=ZohoFSM.modules.<module_name>.UPDATE

Supported Modules

Module NameAPI Name
RequestsRequests
EstimatesEstimates
WorkOrdersWork_Orders
ServiceAppointmentsService_Appointments
ContactsContacts
AssetsAssets

Sample Request

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

Sample Input

Copied{
    "data":[{
        "Note_Content":"The note has been updated.",
        "Note_Title":"Test"
    }]
}

Sample Response

Copied{
    "data": [
        {
            "code": "SUCCESS",
            "details": {
                "Modified_Time": "2022-03-23T23:50:11-07:00",
                "Modified_By": {
                    "name": "Daniel Warne",
                    "id": "1011000000139001"
                },
                "Created_Time": "2022-03-23T22:47:42-07:00",
                "id": "1011000000237015",
                "Created_By": {
                    "name": "Daniel Warne",
                    "id": "1011000000139001"
                }
            },
            "message": "record updated",
            "status": "success"
        }
    ]
}