Notes
Number of APIs: 10
-
Get all notes GET {{baseUrl}}/notes?user_id=<integer>&lead_id=<uuid>&deal_id=<integer>&person_id=<integer>&org_id=<integer>&start=0&limit=<integer>&sort=<string>&start_date=<date>&end_date=<date>&pinned_to_lead_flag=<number>&pinned_to_deal_flag=<number>&pinned_to_organization_flag=<number>&pinned_to_person_flag=<number>
-
Add a note POST {{baseUrl}}/notes
-
Delete a note DELETE {{baseUrl}}/notes/:id
-
Get one note GET {{baseUrl}}/notes/:id
-
Update a note PUT {{baseUrl}}/notes/:id
-
Get all comments for a note GET {{baseUrl}}/notes/:id/comments?start=0&limit=<integer>
-
Add a comment to a note POST {{baseUrl}}/notes/:id/comments
-
Get one comment GET {{baseUrl}}/notes/:id/comments/:commentId
-
Update a comment related to a note PUT {{baseUrl}}/notes/:id/comments/:commentId
-
Delete a comment related to a note DELETE {{baseUrl}}/notes/:id/comments/:commentId