GET request/customer/{CustomerId}/note/{NoteId}
Get a specific note about that company
Request Information
URI Parameters
Name | Description | Type | Additional information |
---|---|---|---|
CustomerId | integer |
Required |
|
NoteId | integer |
Required |
Body Parameters
None.
Response Information
Resource Description
NotesViewName | 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-06-26T20:48:33.7076678+00:00", "dateModified": "2025-06-26T20:48:33.7076678+00:00", "note": "sample string 2" }
text/html
Sample:
{"noteId":1,"dateCreated":"2025-06-26T20:48:33.7076678+00:00","dateModified":"2025-06-26T20:48:33.7076678+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-06-26T20:48:33.7076678+00:00</DateCreated> <DateModified>2025-06-26T20:48:33.7076678+00:00</DateModified> <NoteId>1</NoteId> </NotesView>