Notes API Details

The Notes API facilitates retrieving notes assigned to you, those added to a group, and more. It supports tasks such as adding, managing notes, creating books, and marking notes as favorites.

While using any API related to Notes, make use of the OAuth scope Zohomail.notes.

Method NameURLMethod TypeOAuth ScopePurpose
Create a noteGroup Notes:
/api/notes/groups/{groupId}
POSTZohoMail.notesTo add a new note.
Personal Note: 
/api/notes/me
Create a bookGroup Notes
/api/notes/groups/{groupId}/books
POSTTo add a new book in Notes.
Personal Notes: 
/api/notes/me/books
Add an attachment to a noteGroup Notes:
/api/notes/groups/{groupId}/{noteId}/attachments
POSTTo add attachments to a note.
Personal Notes: 
/api/notes/me/{noteId}/attachments
Get all groups/api/notes/groupsGETTo get all group details.
Get all notesGroup Notes:
/api/notes/groups/{groupId}
GETTo get details of all the notes.
Personal Notes: 
/api/notes/me
Get all booksGroup Notes
/api/notes/groups/{groupId}/books
GETTo list all the books in Notes.
Personal Notes: 
/api/notes/me/books
Get all favourite notes/api/notes/favoritesGETTo get all favorite notes details.
Get all shared notes/api/notes/sharedtomeGETTo get all shared notes details.
Get all notes in a bookGroup Notes: 
/api/notes/groups/{groupId}/books/{bookId}
GETTo get details of all notes in a Book.
Personal Notes: 
/api/notes/me/books/{bookId}
Get all attachments in a noteGroup Notes:
/api/notes/groups/{groupId}/{noteId}/attachments
GETTo get details of all attachments in a note.
Personal Notes: 
/api/notes/me/{noteId}/attachments
Get a noteGroup Notes: 
/api/notes/groups/{groupId}/{noteId}
GETTo get details of a single note.
Personal Note: 
/api/notes/me/{noteId}
Get an attachmentGroup Notes:
/api/notes/groups/{groupId}/{noteId}/attachments/{attachmentId}
GETTo get details of an attachment in a note.
Personal Notes: 
/api/notes/me/{noteId}/attachments/{attachmentId}
Edit a noteGroup Notes: 
/api/notes/groups/{groupId}/{noteId}
PUTTo edit a note.
Personal note: 
/api/notes/me/{noteId}
Edit a bookGroup Notes: 
/api/notes/groups/{groupId}/books/{bookId}
PUTTo edit a book in Notes.
Personal note: 
/api/notes/me/books/{bookId}
Mark a note as favoriteGroup Notes: 
/api/notes/groups/{groupId}/{noteId}/favorite
PUTTo mark a note as favorite.
Personal Notes: 
/api/notes/me/{noteId}/favorite
Unmark a note as favoriteGroup Notes: 
/api/notes/groups/{groupId}/{noteId}/favorite
DELETETo remove favorite mark from a note.
Personal Notes: 
/api/notes/me/{noteId}/favorite
Delete an attachmentGroup notes;
/api/notes/groups/{groupId}/{noteId}/attachments/{attachmentId}
DELETETo delete an attachment in a note.
Personal Notes
/api/notes/me/{noteId}/attachments/{attachmentId}
Delete a bookGroup Notes: 
/api/notes/groups/{groupId}/books/{bookId}
DELETETo delete a book in Notes.
Personal Notes: 
/api/notes/me/books/{bookId}
Delete a noteGroup Notes;
/api/notes/groups/{groupId}/{noteId}
DELETETo delete a note.
Personal Notes: 
/api/notes/me/{noteId}