Create a Note
Purpose
To create a note in a record.
Request URL
https://fsm.zoho.com/fsm/v1/<module_api_name>/<record_id>/Notes
module_api_name - The API name of the module in whose record you want to create the note
record_id - The unique ID of the record.
Request Method
POST
Scope
scope=ZohoFSM.modules.<module_name>.CREATE
Supported Modules
Module Name | API Name |
Requests | Requests |
Estimates | Estimates |
WorkOrders | Work_Orders |
ServiceAppointments | Service_Appointments |
Contacts | Contacts |
Assets | Assets |
Sample Request
Copiedcurl --request POST 'https://fsm.zoho.com/fsm/v1/Work_Orders/1011000000215001/Notes' \
--header 'Authorization: Zoho-oauthtoken 1000.axxxxxxxxx.xxxxxxxxxx1' \
-d "@newNote.json"
Sample Input
Copied{
"data":[{
"Note_Content":"This is a test note.",
"Note_Title":"Test"
}]
}
Sample Response
Copied{
"data": [
{
"code": "SUCCESS",
"details": {
"Modified_Time": "2022-03-23T23:36:19-07:00",
"Modified_By": {
"name": "Daniel Warne",
"id": "1011000000139001"
},
"Created_Time": "2022-03-23T23:36:19-07:00",
"id": "1011000000237038",
"Created_By": {
"name": "Daniel Warne",
"id": "1011000000139001"
}
},
"message": "record added",
"status": "success"
}
]
}