Notes

Number of APIs: 10

  1. 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>

  2. Add a note POST {{baseUrl}}/notes

  3. Delete a note DELETE {{baseUrl}}/notes/:id

  4. Get one note GET {{baseUrl}}/notes/:id

  5. Update a note PUT {{baseUrl}}/notes/:id

  6. Get all comments for a note GET {{baseUrl}}/notes/:id/comments?start=0&limit=<integer>

  7. Add a comment to a note POST {{baseUrl}}/notes/:id/comments

  8. Get one comment GET {{baseUrl}}/notes/:id/comments/:commentId

  9. Update a comment related to a note PUT {{baseUrl}}/notes/:id/comments/:commentId

  10. Delete a comment related to a note DELETE {{baseUrl}}/notes/:id/comments/:commentId