Team Notes API
Get a list of notes in a Team's workspace
GET /teams/:teamPath/notes
- URL Params
- Success Response
Image Not Showing
Possible Reasons
- The image file may be corrupted
- The server hosting the image is unavailable
- The image path is incorrect
- The image format is not supported
Learn More โ
Please use API of "Get a note" GET /notes/:noteId
to retrieve the note content.
Create a note in a Team workspace
POST /teams/:teamPath/notes
- URL Params
- Data Params
- body (optional)[application/json]
field |
type |
values |
title |
string |
|
content |
string |
|
readPermission |
string |
owner , sign_in , guest |
writePermission |
string |
owner , sign_in , guest |
commentPermission |
string |
disabled , forbidden , owners , signed_in_users , everyone |
permalink |
string |
|
- Success Response
Update a note in a Team's workspace
Patch /teams/:teamPath/notes/:noteId
- URL Params:
- teamPath: string
- nodeId: string
- Data Params:
- body (optional) [application/json]
field |
type |
values |
content |
string |
|
readPermission |
string |
owner , signed_in , guest |
writePermission |
string |
owner , signed_in , guest |
permalink |
string |
|
- Success Response
Delete a note in a Team's workspace
DELETE /teams/:teamPath/notes/:noteId
- URL Params:
- teamPath: string
- nodeId: string
- Success Response