GET request/customer/{CustomerId}/site/{SiteId}/note/{NoteId}
Display a particular customer's site notes
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| CustomerId | integer |
Required |
|
| NoteId | integer |
Required |
|
| SiteId | integer |
Required |
Body Parameters
None.
Response Information
Resource Description
NotesView| Name | Description | Type | Additional information |
|---|---|---|---|
| DateCreated | date |
None. |
|
| DateModified | date |
None. |
|
| Note | string |
None. |
|
| NoteId | integer |
None. |
Response Formats
application/json, text/json
Sample:
{
"noteId": 1,
"dateCreated": "2025-11-05T12:22:40.9010946+00:00",
"dateModified": "2025-11-05T12:22:40.9010946+00:00",
"note": "sample string 2"
}
text/html
Sample:
{"noteId":1,"dateCreated":"2025-11-05T12:22:40.9010946+00:00","dateModified":"2025-11-05T12:22:40.9010946+00:00","note":"sample string 2"}
application/xml, text/xml
Sample:
<NotesView xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/MyUtilityGeniusForBusiness.Api.Models.Default"> <Note>sample string 2</Note> <DateCreated>2025-11-05T12:22:40.9010946+00:00</DateCreated> <DateModified>2025-11-05T12:22:40.9010946+00:00</DateModified> <NoteId>1</NoteId> </NotesView>