Get a Note

Purpose

To fetch a specific Note from 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 from whose record you want to fetch the note

record_id - The unique ID of the record

note_id - The ID of the note you want to fetch

Request Method

GET

Scope

scope=ZohoFSM.modules.<module_name>.READ

Supported Modules

Module NameAPI Name
RequestsRequests
EstimatesEstimates
WorkOrdersWork_Orders
ServiceAppointmentsService_Appointments
ContactsContacts
AssetsAssets

Sample Request

Copiedcurl --request GET 'https://fsm.zoho.com/fsm/v1/Work_Orders/1011000000215001/Notes/1011000000237015' \
--header 'Authorization: Zoho-oauthtoken 1000.xxxxxx.xxxxxxe'

Sample Response

Copied{
    "data": [
        {
            "Owner": {
                "name": "Mary Cooper",
                "id": "1439000000161001",
                "email": "mary@zylker.com"
            },
            "Modified_Time": "2023-08-21T13:21:35+05:30",
            "$attachments": [
                {
                    "Owner": {
                        "name": "Mary Cooper",
                        "id": "1439000000161001",
                        "email": "mary@zylker.com"
                    },
                    "Modified_Time": "2023-08-21T13:21:35+05:30",
                    "File_Name": "tv-wall-mounting.jpeg",
                    "Created_Time": "2023-08-21T13:21:35+05:30",
                    "Size": "710026",
                    "Parent_Id": {
                        "name": null,
                        "id": "1439000000650141"
                    },
                    "$editable": true,
                    "$file_id": "1692XXXX4vN4",
                    "$permissions": {
                        "read": true,
                        "edit": true,
                        "delete": true
                    },
                    "$type": null,
                    "$se_module": "Notes",
                    "Modified_By": {
                        "name": "Mary Cooper",
                        "id": "1439000000161001",
                        "email": "mary@zylker.com"
                    },
                    "$inactive": false,
                    "id": "1439000000650142",
                    "Created_By": {
                        "name": "Mary Cooper",
                        "id": "1439000000161001",
                        "email": "mary@zylker.com"
                    },
                    "$link_url": null
                }
            ],
            "Created_Time": "2023-08-21T13:21:35+05:30",
            "Parent_Id": {
                "name": "Lucy Robins",
                "id": "1439000000505113"
            },
            "$editable": true,
            "$permissions": {
                "read": true,
                "edit": true,
                "delete": true
            },
            "$se_module": "Contacts",
            "$is_shared_to_client": "0",
            "Modified_By": {
                "name": "Mary Cooper",
                "id": "1439000000161001",
                "email": "mary@zylker.com"
            },
            "$size": null,
            "$inactive": false,
            "$voice_note": null,
            "id": "1439000000650141",
            "Created_By": {
                "name": "Mary Cooper",
                "id": "1439000000161001",
                "email": "mary@zylker.com"
            },
            "Note_Title": "Test",
            "Note_Content": "This is a test note."
        }
    ]
}