Projects
Add a note to a project
Creates a new note for a project. Returns the created note ID. Note is automatically associated with the project and current user.
Parameters:
-
projectId(path, required): The project ID. -
note(body, required): The Note entity (EntityType and EntityID are set automatically).
POST
Add a note to a project
Authorizations
Pass Authorization: Bearer <token> on every request. See the Authentication section of the API description for how to fetch a token.
Path Parameters
Body
application/json
Response
Created note ID
Previous
Delete a project noteDeletes a note from a project by note ID. Returns true on success, false if delete fails.
**Parameters:**
- `projectId` (path, required): The project ID.
- `noteId` (path, required): The note ID to delete.
Next
Add a note to a project