Returns a list of notes for this event

Request Information

URI Parameters

Name Description Type Additional information
eventId

Id for event

integer

Required

Body Parameters

None.

Sample Request

https://api.servicereef.com/v1/events/{eventId}/notes

Response Information

Resource Description

Collection of EventNoteModel
Name Description Type Additional information
NoteId

integer
NoteType

string
Body

string
DateCreated

date
CreatedBy

BasicUserModel

Try API

Try this endpoint by entering your credentials and using the API Explorer.

Try With API Explorer

Response Formats

application/json, text/json

Sample:
[
  {
    "NoteId": 1,
    "NoteType": "sample string 2",
    "Body": "sample string 3",
    "DateCreated": "2026-08-16T20:35:59.4321344Z",
    "CreatedBy": {
      "UserId": 1,
      "FirstName": "sample string 2",
      "LastName": "sample string 3",
      "Email": "sample string 4"
    }
  },
  {
    "NoteId": 1,
    "NoteType": "sample string 2",
    "Body": "sample string 3",
    "DateCreated": "2026-08-16T20:35:59.4321344Z",
    "CreatedBy": {
      "UserId": 1,
      "FirstName": "sample string 2",
      "LastName": "sample string 3",
      "Email": "sample string 4"
    }
  }
]